Skip to content

Instantly share code, notes, and snippets.

@xaviershay
Created August 13, 2009 05:56
Show Gist options
  • Save xaviershay/167013 to your computer and use it in GitHub Desktop.
Save xaviershay/167013 to your computer and use it in GitHub Desktop.
require 'spec/runner/formatter/progress_bar_formatter'
class RealtimeFailuresFormatter < Spec::Runner::Formatter::ProgressBarFormatter
def example_failed(example, counter, failure)
super
@output.puts
@output.puts failure.exception.to_s, failure.exception.backtrace
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment