class Fuci::Tester

Public Instance Methods

command(log) click to toggle source

must return a command string to be executed by the system, e.g. “rspec ./spec/features/it_is_cool_spec.rb”

# File lib/fuci/tester.rb, line 14
def command log
  raise NotImplementedError
end
indicates_failure?(log) click to toggle source

must return a boolean telling whether the log passed in indicates a failure made by the tester

# File lib/fuci/tester.rb, line 7
def indicates_failure? log
  raise NotImplementedError
end