class Omnitest::Psychic::BaseCLI

Public Instance Methods

psychic() click to toggle source
# File lib/omnitest/psychic/cli.rb, line 12
def psychic
  @psychic ||= setup_runner
end
setup_runner() click to toggle source
# File lib/omnitest/psychic/cli.rb, line 16
def setup_runner
  runner_opts = { cwd: Dir.pwd, cli: shell, parameters: options.parameters }
  runner_opts.merge!(Omnitest::Core::Util.symbolized_hash(options))
  Omnitest::Psychic.new(runner_opts)
end