Sha256: 45525c5dc726b0dba916f43f0d1b3167c2fcc7719c8dcb79e46d54d713b2550b

Contents?: true

Size: 500 Bytes

Versions: 1

Compression:

Stored size: 500 Bytes

Contents

def calabash_run(args)
  run_build_if_test_server_does_not_exist


  settings = JSON.parse(IO.read(".calabash_settings"))
  
  env ="PACKAGE_NAME=#{settings["package_name"]} "\
        "TEST_PACKAGE_NAME=#{settings["package_name"]}.test "\
        "APP_PATH=#{settings["app_path"]} "\
        "TEST_APP_PATH=features/support/Test.apk "\
        "TEST_SERVER_PORT=34777"
      
      
  cmd = "cucumber #{ARGV.join(" ")} #{env}"
  puts cmd
  IO.popen(cmd) do |io|
    io.each { |s| print s }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
calabash-android-0.0.6 bin/calabash-android-run.rb