Class/Module Index [+]

Quicksearch

Spec::Runner::Formatter::ProgressBarFormatter

Public Instance Methods

example_failed(example, counter, failure) click to toggle source
# File lib/spec/runner/formatter/progress_bar_formatter.rb, line 10
def example_failed(example, counter, failure)
  @output.print colorize_failure('F', failure)
  @output.flush
end
example_passed(example) click to toggle source
# File lib/spec/runner/formatter/progress_bar_formatter.rb, line 15
def example_passed(example)
  @output.print green('.')
  @output.flush
end
example_pending(example, message, deprecated_pending_location=nil) click to toggle source
# File lib/spec/runner/formatter/progress_bar_formatter.rb, line 20
def example_pending(example, message, deprecated_pending_location=nil)
  super
  @output.print yellow('*')
  @output.flush
end
start_dump() click to toggle source
# File lib/spec/runner/formatter/progress_bar_formatter.rb, line 26
def start_dump
  @output.puts
  @output.flush
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.