Created
January 23, 2013 00:02
-
-
Save bootstraponline/4600166 to your computer and use it in GitHub Desktop.
Use clear_app_data to install apk once instead of after each scenario.
export RESET_BETWEEN_SCENARIOS=1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'calabash-android/management/app_installation' | |
AfterConfiguration do |config| | |
FeatureNameMemory.feature_name = nil | |
end | |
$first_run = true | |
Before do |scenario| | |
@scenario_is_outline = (scenario.class == Cucumber::Ast::OutlineTable::ExampleRow) | |
if @scenario_is_outline | |
scenario = scenario.scenario_outline | |
end | |
feature_name = scenario.feature.title | |
if FeatureNameMemory.feature_name != feature_name \ | |
or ENV["RESET_BETWEEN_SCENARIOS"] == "1" | |
if ENV["RESET_BETWEEN_SCENARIOS"] == "1" | |
log "New scenario - reinstalling apps" | |
else | |
log "First scenario in feature - reinstalling apps" | |
end | |
if $first_run | |
$first_run = false | |
uninstall_apps | |
install_app(ENV["TEST_APP_PATH"]) | |
install_app(ENV["APP_PATH"]) | |
end | |
clear_app_data | |
FeatureNameMemory.feature_name = feature_name | |
FeatureNameMemory.invocation = 1 | |
else | |
FeatureNameMemory.invocation += 1 | |
end | |
end | |
FeatureNameMemory = Class.new | |
class << FeatureNameMemory | |
@feature_name = nil | |
attr_accessor :feature_name, :invocation | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment