Class: Megatest::Reporters::VerboseReporter
Instance Method Summary
collapse
#start, #summary
#initialize, #start, #summary
Instance Method Details
#after_test_case(_queue, _test_case, result) ⇒ Object
132
133
134
135
136
137
138
|
# File 'lib/megatest/reporters.rb', line 132
def after_test_case(_queue, _test_case, result)
super
@out.puts
if result.bad?
@out.puts @out.colored(render_failure(result))
end
end
|
#before_test_case(_queue, test_case) ⇒ Object
128
129
130
|
# File 'lib/megatest/reporters.rb', line 128
def before_test_case(_queue, test_case)
@out.print("#{test_case.id} = ")
end
|