class RSpec::Bisect::Reporters::ConsoleReporter

Public Instance Methods

report(text) click to toggle source
# File lib/rspec/bisect/reporters/console_reporter.rb, line 9
def report(text)
  puts text
end
report_failure(text) click to toggle source
# File lib/rspec/bisect/reporters/console_reporter.rb, line 17
def report_failure(text)
  report text.red
end
report_success(text) click to toggle source
# File lib/rspec/bisect/reporters/console_reporter.rb, line 13
def report_success(text)
  report text.green
end