Sha256: faf28307edfab2442fd6919c4f3a72d817fc658a6b5f82cb050b556bf2539a13

Contents?: true

Size: 608 Bytes

Versions: 13

Compression:

Stored size: 608 Bytes

Contents

require 'spec/runner/formatter/base_text_formatter'

module Spec
  module Runner
    module Formatter
      class FailingExampleGroupsFormatter < BaseTextFormatter
        def example_failed(example, counter, failure)
          if @example_group
            @output.puts @example_group.filtered_description(/(.*) \(druby.*\)$/)

            @output.flush
            @example_group = nil
          end
        end
        
        def dump_failure(counter, failure)
        end

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

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
dchelimsky-rspec-1.1.99.1 lib/spec/runner/formatter/failing_example_groups_formatter.rb
dchelimsky-rspec-1.1.99.13 lib/spec/runner/formatter/failing_example_groups_formatter.rb
dchelimsky-rspec-1.1.99.2 lib/spec/runner/formatter/failing_example_groups_formatter.rb
dchelimsky-rspec-1.1.99.3 lib/spec/runner/formatter/failing_example_groups_formatter.rb
dchelimsky-rspec-1.1.99.4 lib/spec/runner/formatter/failing_example_groups_formatter.rb
dchelimsky-rspec-1.1.99.5 lib/spec/runner/formatter/failing_example_groups_formatter.rb
dchelimsky-rspec-1.1.99.6 lib/spec/runner/formatter/failing_example_groups_formatter.rb
dchelimsky-rspec-1.1.99.7 lib/spec/runner/formatter/failing_example_groups_formatter.rb
dchelimsky-rspec-1.1.99.8 lib/spec/runner/formatter/failing_example_groups_formatter.rb
dchelimsky-rspec-1.1.99.9 lib/spec/runner/formatter/failing_example_groups_formatter.rb
rspec-1.2.2 lib/spec/runner/formatter/failing_example_groups_formatter.rb
rspec-1.2.1 lib/spec/runner/formatter/failing_example_groups_formatter.rb
rspec-1.2.0 lib/spec/runner/formatter/failing_example_groups_formatter.rb