Class Spec::Runner::Formatter::ProgressBarFormatter
In: vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb
Parent: BaseTextFormatter

Methods

Public Instance methods

[Source]

    # File vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb, line 7
 7:         def example_failed(example, counter, failure)
 8:           @output.print colourise('F', failure)
 9:           @output.flush
10:         end

[Source]

    # File vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb, line 12
12:         def example_passed(example)
13:           @output.print green('.')
14:           @output.flush
15:         end

[Source]

    # File vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb, line 17
17:         def example_pending(example_group_description, example, message)
18:           super
19:           @output.print yellow('P')
20:           @output.flush
21:         end

[Source]

    # File vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb, line 23
23:         def start_dump
24:           @output.puts
25:           @output.flush
26:         end

[Validate]