Sha256: af418d39621bf6ca7a7696a980330235a944343b23107513b0179e382fb96171

Contents?: true

Size: 539 Bytes

Versions: 5

Compression:

Stored size: 539 Bytes

Contents

module Spec
  module Runner
    module Formatter
      class FailingExamplesFormatter < BaseTextFormatter      
        def add_behaviour(behaviour_name)
          @behaviour_name = behaviour_name
        end
      
        def example_failed(name, counter, failure)
          @output.puts "#{@behaviour_name} #{name}"
          @output.flush
        end

        def dump_failure(counter, failure)
        end

        def dump_summary(duration, example_count, failure_count, not_implemented_count)
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rspec-1.0.0 lib/spec/runner/formatter/failing_examples_formatter.rb
rspec-1.0.1 lib/spec/runner/formatter/failing_examples_formatter.rb
rspec-1.0.2 lib/spec/runner/formatter/failing_examples_formatter.rb
rspec-1.0.3 lib/spec/runner/formatter/failing_examples_formatter.rb
rspec-1.0.4 lib/spec/runner/formatter/failing_examples_formatter.rb