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.59.0 spec/format/origen_formatter.rb
origen-0.58.0 spec/format/origen_formatter.rb
origen-0.57.2 spec/format/origen_formatter.rb
origen-0.57.1 spec/format/origen_formatter.rb
origen-0.57.0 spec/format/origen_formatter.rb
origen-0.56.0 spec/format/origen_formatter.rb
origen-0.55.5 spec/format/origen_formatter.rb
origen-0.55.4 spec/format/origen_formatter.rb
origen-0.55.3 spec/format/origen_formatter.rb
origen-0.55.2 spec/format/origen_formatter.rb
origen-0.55.1 spec/format/origen_formatter.rb
origen-0.55.0 spec/format/origen_formatter.rb
origen-0.54.6 spec/format/origen_formatter.rb
origen-0.54.5 spec/format/origen_formatter.rb
origen-0.54.4 spec/format/origen_formatter.rb
origen-0.54.3 spec/format/origen_formatter.rb
origen-0.54.2 spec/format/origen_formatter.rb
origen-0.54.1 spec/format/origen_formatter.rb
origen-0.54.0 spec/format/origen_formatter.rb
origen-0.53.1 spec/format/origen_formatter.rb