Skip to content

Instantly share code, notes, and snippets.

@ymendel
Created August 11, 2010 19:14
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ymendel/519550 to your computer and use it in GitHub Desktop.
Save ymendel/519550 to your computer and use it in GitHub Desktop.
require 'spec/runner/formatter/progress_bar_formatter'
class NescafeFormatter < Spec::Runner::Formatter::ProgressBarFormatter
def example_failed(example, counter, failure)
super
dump_failure(counter, failure)
end
end
require 'rspec/core/formatters/progress_formatter'
class NescafeFormatter < RSpec::Core::Formatters::ProgressFormatter
def example_failed(example, counter, failure)
super
dump_failure(counter, failure)
end
end
--colour
--require spec/support/formatters/nescafe_formatter.rb
--format NescafeFormatter
--loadby mtime
--reverse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment