Sha256: afefb82d23414455dc2fc9fe1f61203e4f97f45c1d02718ebcbd4e57d9bc62ec

Contents?: true

Size: 257 Bytes

Versions: 7

Compression:

Stored size: 257 Bytes

Contents

require 'rspec/core/formatters/base_formatter'

module Respec
  class Formatter < RSpec::Core::Formatters::BaseFormatter
    def start_dump
      @failed_examples.each do |example|
        output.puts example.metadata[:location]
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
respec-0.3.0 lib/respec/formatter.rb
respec-0.2.0 lib/respec/formatter.rb
respec-0.1.1 lib/respec/formatter.rb
respec-0.1.0 lib/respec/formatter.rb
respec-0.0.3 lib/respec/formatter.rb
respec-0.0.2 lib/respec/formatter.rb
respec-0.0.1 lib/respec/formatter.rb