summaryrefslogtreecommitdiff
path: root/android/test/features
diff options
context:
space:
mode:
Diffstat (limited to 'android/test/features')
-rw-r--r--android/test/features/load-app.feature5
-rwxr-xr-xandroid/test/features/step_definitions/calabash_steps.rb1
-rw-r--r--android/test/features/step_definitions/my_steps.rb6
-rwxr-xr-xandroid/test/features/support/app_installation_hooks.rb36
-rwxr-xr-xandroid/test/features/support/app_life_cycle_hooks.rb13
-rwxr-xr-xandroid/test/features/support/env.rb1
-rwxr-xr-xandroid/test/features/support/hooks.rb0
7 files changed, 0 insertions, 62 deletions
diff --git a/android/test/features/load-app.feature b/android/test/features/load-app.feature
deleted file mode 100644
index e6bd1158a4..0000000000
--- a/android/test/features/load-app.feature
+++ /dev/null
@@ -1,5 +0,0 @@
-Feature: Testapp V.1.2
-
-Scenario: 1) Start app and load map
- Given I await for 5 seconds
-
diff --git a/android/test/features/step_definitions/calabash_steps.rb b/android/test/features/step_definitions/calabash_steps.rb
deleted file mode 100755
index 6d80ff0c97..0000000000
--- a/android/test/features/step_definitions/calabash_steps.rb
+++ /dev/null
@@ -1 +0,0 @@
-require 'calabash-android/calabash_steps'
diff --git a/android/test/features/step_definitions/my_steps.rb b/android/test/features/step_definitions/my_steps.rb
deleted file mode 100644
index 3239322ddc..0000000000
--- a/android/test/features/step_definitions/my_steps.rb
+++ /dev/null
@@ -1,6 +0,0 @@
-
-Then /^I await for ([\d\.]+) second(?:s)?$/ do |num_seconds|
-num_seconds = num_seconds.to_f
-sleep num_seconds
-
-end
diff --git a/android/test/features/support/app_installation_hooks.rb b/android/test/features/support/app_installation_hooks.rb
deleted file mode 100755
index 2e0a203bc5..0000000000
--- a/android/test/features/support/app_installation_hooks.rb
+++ /dev/null
@@ -1,36 +0,0 @@
-require 'calabash-android/management/app_installation'
-
-AfterConfiguration do |config|
- FeatureNameMemory.feature_name = nil
-end
-
-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
-
- uninstall_apps
- install_app(ENV["TEST_APP_PATH"])
- install_app(ENV["APP_PATH"])
- 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
diff --git a/android/test/features/support/app_life_cycle_hooks.rb b/android/test/features/support/app_life_cycle_hooks.rb
deleted file mode 100755
index 63d4678d9a..0000000000
--- a/android/test/features/support/app_life_cycle_hooks.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-require 'calabash-android/management/adb'
-require 'calabash-android/operations'
-
-Before do |scenario|
- start_test_server_in_background
-end
-
-After do |scenario|
- if scenario.failed?
- screenshot_embed
- end
- shutdown_test_server
-end
diff --git a/android/test/features/support/env.rb b/android/test/features/support/env.rb
deleted file mode 100755
index bb2505d458..0000000000
--- a/android/test/features/support/env.rb
+++ /dev/null
@@ -1 +0,0 @@
-require 'calabash-android/cucumber'
diff --git a/android/test/features/support/hooks.rb b/android/test/features/support/hooks.rb
deleted file mode 100755
index e69de29bb2..0000000000
--- a/android/test/features/support/hooks.rb
+++ /dev/null