Sha256: b4bfed7ca72f708ae13b58eaf8e9284e04f3cebab5a6e34b03f16177afd81533
Contents?: true
Size: 1.16 KB
Versions: 9
Compression:
Stored size: 1.16 KB
Contents
def calabash_run(app_path = nil) old_runner = "android.test.InstrumentationTestRunner" new_rummer = "sh.calaba.instrumentationbackend.CalabashInstrumentationTestRunner" f = "features/support/app_life_cycle_hooks.rb" if File.exist?(f) and IO.read(f).include? old_runner puts "Calabash has been updated" puts "Please do the following to update your project:" puts "1) Open #{f} in a text editor" puts "2) Replace #{old_runner} with #{new_rummer}" exit 1 end if app_path build_test_server_if_needed(app_path) test_server_path = test_server_path(app_path) if ENV["TEST_SERVER_PORT"] test_server_port = ENV["TEST_SERVER_PORT"] else test_server_port = "34777" end env = "PACKAGE_NAME=#{package_name(app_path)} "\ "MAIN_ACTIVITY=#{main_activity(app_path)} "\ "APP_PATH=\"#{app_path}\" "\ "TEST_APP_PATH=\"#{test_server_path}\" "\ "TEST_SERVER_PORT=#{test_server_port}" else env = "" end STDOUT.sync = true arguments = ARGV - ["--no-build"] cmd = "#{RbConfig.ruby} -S cucumber #{arguments.join(" ")} #{env}" log cmd exit_code = system(cmd) sleep(1) exit_code end
Version data entries
9 entries across 9 versions & 2 rubygems