Sha256: 259cafddb2becc6f6dccd8568b4b83c8ef6e7a93ac044b802981fc588e8bb321

Contents?: true

Size: 428 Bytes

Versions: 10

Compression:

Stored size: 428 Bytes

Contents

# encoding: utf-8

# SimpleCov MUST be started before require 'hexp'
#
if ENV['COVERAGE'] == 'true'
  require 'simplecov'
  require 'coveralls'

  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
    SimpleCov::Formatter::HTMLFormatter,
    Coveralls::SimpleCov::Formatter
  ]

  SimpleCov.start do
    command_name 'spec:unit'
    add_filter 'hexp/h.rb'

    minimum_coverage 98.5
  end
end

require 'shared_helper'

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
hexp-0.4.4 spec/spec_helper.rb
hexp-0.4.3 spec/spec_helper.rb
hexp-0.4.2 spec/spec_helper.rb
hexp-0.4.1 spec/spec_helper.rb
hexp-0.4.0.beta1 spec/spec_helper.rb
hexp-0.3.3 spec/spec_helper.rb
hexp-0.3.2 spec/spec_helper.rb
hexp-0.3.1 spec/spec_helper.rb
hexp-0.3.0 spec/spec_helper.rb
hexp-0.2.0 spec/spec_helper.rb