Sha256: 4d2efc313e58e3219e02ac1da8d04575bfb78ff24df3cd3e9ee25a540e8bb41e

Contents?: true

Size: 456 Bytes

Versions: 7

Compression:

Stored size: 456 Bytes

Contents

gem 'minitest'

require 'simplecov' # Must be included 1st

require 'minitest/autorun'
require 'purdytest'
require 'simplecov-rcov'

require 'uncharted'

class SimpleCov::Formatter::MergedFormatter
  def format(result)
     SimpleCov::Formatter::HTMLFormatter.new.format(result)
     SimpleCov::Formatter::RcovFormatter.new.format(result)
  end
end

SimpleCov.formatter = SimpleCov::Formatter::MergedFormatter

SimpleCov.start do
  add_filter '/test/'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
uncharted-0.0.16 test/test_helper.rb
uncharted-0.0.15 test/test_helper.rb
uncharted-0.0.14 test/test_helper.rb
uncharted-0.0.13 test/test_helper.rb
uncharted-0.0.12 test/test_helper.rb
uncharted-0.0.11 test/test_helper.rb
uncharted-0.0.10 test/test_helper.rb