class TestGen::CLI

Public Instance Methods

project(name) click to toggle source
# File lib/testgen/cli.rb, line 12
def project(name)
  with_lib = options[:with_lib] ? 'true' : 'false'
  with_mohawk = options[:with_mohawk] ? 'true' : 'false'
  with_appium = options[:with_appium] ? 'true' : 'false'
  TestGen::Generators::Project.start([name, with_lib, with_mohawk, with_appium])
end