Sha256: a87e5d9b6133deefad877b413cdafab3caf711e94d67ba64cdf58249fb02ba68

Contents?: true

Size: 537 Bytes

Versions: 8

Compression:

Stored size: 537 Bytes

Contents

# encoding: utf-8

require 'bundler/setup'

require 'rspec'
require 'simplecov'

class SimpleCov::Formatter::QualityFormatter
  def format(result)
    SimpleCov::Formatter::HTMLFormatter.new.format(result)
    File.open("coverage/covered_percent", "w") do |f|
      f.puts result.source_files.covered_percent.to_f
    end
  end
end

SimpleCov.formatter = SimpleCov::Formatter::QualityFormatter

SimpleCov.start do
  add_filter '/spec/'
end

RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
zmachine-0.4.3 spec/spec_helper.rb
zmachine-0.4.2 spec/spec_helper.rb
zmachine-0.4.1 spec/spec_helper.rb
zmachine-0.4.0 spec/spec_helper.rb
zmachine-0.3.2 spec/spec_helper.rb
zmachine-0.3.0 spec/spec_helper.rb
zmachine-0.2.1 spec/spec_helper.rb
zmachine-0.2.0 spec/spec_helper.rb