Class Spec::Runner::Formatter::FailingBehavioursFormatter
In: lib/spec/runner/formatter/failing_behaviours_formatter.rb
Parent: BaseTextFormatter

Methods

Public Instance methods

[Source]

   # File lib/spec/runner/formatter/failing_behaviours_formatter.rb, line 5
5:         def add_behaviour(behaviour_name)
6:           @behaviour_name = behaviour_name
7:         end

[Source]

    # File lib/spec/runner/formatter/failing_behaviours_formatter.rb, line 17
17:         def dump_failure(counter, failure)
18:         end

[Source]

    # File lib/spec/runner/formatter/failing_behaviours_formatter.rb, line 20
20:         def dump_summary(duration, example_count, failure_count, not_implemented_count)
21:         end

[Source]

    # File lib/spec/runner/formatter/failing_behaviours_formatter.rb, line 9
 9:         def example_failed(name, counter, failure)
10:           unless @behaviour_name.nil?
11:             @output.puts @behaviour_name 
12:             @behaviour_name = nil
13:             @output.flush
14:           end
15:         end

[Validate]