Class: Spec::Runner::Formatter::SpecdocFormatter
Instance Method Summary
collapse
#dump_failure, #dump_summary, #initialize, #spec_started, #start, #start_dump
Instance Method Details
#add_context(name, first) ⇒ Object
5
6
7
8
|
# File 'lib/spec/runner/formatter/specdoc_formatter.rb', line 5
def add_context(name, first)
@output << "\n#{name}\n"
@output.flush
end
|
#spec_failed(name, counter, failure) ⇒ Object
10
11
12
13
|
# File 'lib/spec/runner/formatter/specdoc_formatter.rb', line 10
def spec_failed(name, counter, failure)
@output << "- #{name} (FAILED - #{counter})\n"
@output.flush
end
|
#spec_passed(name) ⇒ Object
15
16
17
18
|
# File 'lib/spec/runner/formatter/specdoc_formatter.rb', line 15
def spec_passed(name)
@output << "- #{name}\n"
@output.flush
end
|