module Calabash::Launcher

You can find examples of more complicated launch hooks in these two repositories:

github.com/calabash/ios-smoke-test-app/blob/master/CalSmokeApp/features/support/01_launch.rb github.com/calabash/ios-webview-test-app/blob/master/CalWebViewApp/features/support/01_launch.rb

Public Class Methods

launcher() click to toggle source
# File lib/aws/ios/01_launch.rb, line 12
def self.launcher
  @@launcher ||= Calabash::Cucumber::Launcher.new
end
launcher=(launcher) click to toggle source
# File lib/aws/ios/01_launch.rb, line 16
def self.launcher=(launcher)
  @@launcher = launcher
end