changelog shortlog tags changeset manifest revisions annotate raw

vendor/plugins/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb

changeset 15: 64acf98d15f4
author: moriq@moriq.com
date: Mon Mar 10 10:12:58 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add plugins rspec
1require 'spec/runner/formatter/base_text_formatter'
2
3module Spec
4 module Runner
5 module Formatter
6 class FailingExamplesFormatter < BaseTextFormatter
7 def example_failed(example, counter, failure)
8 @output.puts "#{example_group.description} #{example.description}"
9 @output.flush
10 end
11
12 def dump_failure(counter, failure)
13 end
14
15 def dump_summary(duration, example_count, failure_count, pending_count)
16 end
17 end
18 end
19 end
20end