Sha256: df06d2a51b0938778db46744ecefbd27d1f1e97e50ff7f0f2f0b98a26ce864ba

Contents?: true

Size: 374 Bytes

Versions: 180

Compression:

Stored size: 374 Bytes

Contents

require 'rspec/core/formatters/base_formatter'

class OrigenFormatter < RSpec::Core::Formatters::BaseFormatter

  def dump_summary(duration, example_count, failure_count, pending_count)
    if failure_count > 0
      Origen.app.stats.report_fail
    else
      Origen.app.stats.report_pass
    end
    super(duration, example_count, failure_count, pending_count)
  end

end

Version data entries

180 entries across 180 versions & 1 rubygems

Version Path
origen-0.40.1 spec/format/origen_formatter.rb
origen-0.40.0 spec/format/origen_formatter.rb
origen-0.38.0 spec/format/origen_formatter.rb
origen-0.37.0 spec/format/origen_formatter.rb
origen-0.36.1 spec/format/origen_formatter.rb
origen-0.36.0 spec/format/origen_formatter.rb
origen-0.35.1 spec/format/origen_formatter.rb
origen-0.35.0 spec/format/origen_formatter.rb
origen-0.34.3 spec/format/origen_formatter.rb
origen-0.34.2 spec/format/origen_formatter.rb
origen-0.34.1 spec/format/origen_formatter.rb
origen-0.34.0 spec/format/origen_formatter.rb
origen-0.33.3 spec/format/origen_formatter.rb
origen-0.33.2 spec/format/origen_formatter.rb
origen-0.33.1 spec/format/origen_formatter.rb
origen-0.33.0 spec/format/origen_formatter.rb
origen-0.32.1 spec/format/origen_formatter.rb
origen-0.32.0 spec/format/origen_formatter.rb
origen-0.31.0 spec/format/origen_formatter.rb
origen-0.30.0 spec/format/origen_formatter.rb