Sha256: abb7642e956d5295c8b5009ef10b6c6a9ed2aeae364a50f22fbe13a02a45fbc0
Contents?: true
Size: 667 Bytes
Versions: 2
Compression:
Stored size: 667 Bytes
Contents
# encoding: utf-8 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 'config' add_filter 'spec' add_filter 'vendor' minimum_coverage 100 end end require 'devtools/spec_helper' require 'equalizer' # TODO: FIXME! # Cache correct freezer in ice_nine before # rspec2 infects the world... Equalizer.new RSpec.configure do |config| config.expect_with :rspec do |expect_with| expect_with.syntax = :expect end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
equalizer-0.0.8 | spec/spec_helper.rb |
equalizer-0.0.7 | spec/spec_helper.rb |