Skip to content

Instantly share code, notes, and snippets.

@jsl
Created March 2, 2011 23:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jsl/852009 to your computer and use it in GitHub Desktop.
Save jsl/852009 to your computer and use it in GitHub Desktop.
Untested Untested
require 'spec/runner/formatter/base_text_formatter'
require 'spec/runner/formatter/no_op_method_missing'
module Spec
module Runner
module Formatter
class ImmediateFailureFormatter < BaseTextFormatter
include NOOPMethodMissing
def example_failed(example, counter, failure)
@output.print colorize_failure('F', failure)
@output.print format_backtrace(failure.exception.backtrace)
@output.flush
end
def example_passed(example)
@output.print green('.')
@output.flush
end
def example_pending(example, message, deprecated_pending_location=nil)
super
@output.print yellow('*')
@output.flush
end
def start_dump
@output.puts
@output.flush
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment