Upgraded Rails and RSpec
[monkeycharger.git] / vendor / plugins / rspec / lib / spec / runner / formatter / failing_examples_formatter.rb
blob510213a86340d56d572c1cd541925ef62c1acde3
1 module Spec
2   module Runner
3     module Formatter
4       class FailingExamplesFormatter < BaseTextFormatter      
5         def add_behaviour(behaviour_name)
6           @behaviour_name = behaviour_name
7         end
8       
9         def example_failed(name, counter, failure)
10           @output.puts "#{@behaviour_name} #{name}"
11           @output.flush
12         end
14         def dump_failure(counter, failure)
15         end
17         def dump_summary(duration, example_count, failure_count, not_implemented_count)
18         end
19       end
20     end
21   end
22 end