Sha256: 62e34fc4820b238ec6ef5edfd3fbae1101e2196c9444d98575924839d3a78fa3

Contents?: true

Size: 503 Bytes

Versions: 1

Compression:

Stored size: 503 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"
      
  STDOUT.sync = true
  cmd = "cucumber #{ARGV.join(" ")} #{env}"
  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.7 bin/calabash-android-run.rb