class Riot::SilentReporter
Basically, the Null Object pattern; nothing is output from this reporter.
Public Instance Methods
error(description, e)
click to toggle source
(see Riot::Reporter#error)
# File lib/riot/reporter/silent.rb, line 12 def error(description, e); end
fail(description, message, line, file)
click to toggle source
(see Riot::Reporter#fail)
# File lib/riot/reporter/silent.rb, line 9 def fail(description, message, line, file); end
pass(description, message)
click to toggle source
(see Riot::Reporter#pass)
# File lib/riot/reporter/silent.rb, line 6 def pass(description, message); end
results(time_taken)
click to toggle source
(see Riot::Reporter#results)
# File lib/riot/reporter/silent.rb, line 15 def results(time_taken); end