Class/Module Index [+]

Quicksearch

RSpec::Core::Formatters::ProgressFormatter

Public Instance Methods

example_failed(example) click to toggle source
# File lib/rspec/core/formatters/progress_formatter.rb, line 18
def example_failed(example)
  super(example)
  output.print red('F')
end
example_passed(example) click to toggle source
# File lib/rspec/core/formatters/progress_formatter.rb, line 8
def example_passed(example)
  super(example)
  output.print green('.')
end
example_pending(example) click to toggle source
# File lib/rspec/core/formatters/progress_formatter.rb, line 13
def example_pending(example)
  super(example)
  output.print yellow('*')
end
start_dump() click to toggle source
# File lib/rspec/core/formatters/progress_formatter.rb, line 23
def start_dump
  super()
  output.puts
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.