Sha256: aa41f581c752caab5aeec99a22c6552d27fd7b50dd69cdfa308384e5091486a1
Contents?: true
Size: 558 Bytes
Versions: 4
Compression:
Stored size: 558 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' minimum_coverage 100 end end require 'orc' RSpec.configure do |config| config.expect_with :rspec do |c| c.syntax = :expect end config.mock_with :rspec do |c| c.syntax = :expect end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
orc-0.0.4 | spec/spec_helper.rb |
orc-0.0.3 | spec/spec_helper.rb |
orc-0.0.2 | spec/spec_helper.rb |
orc-0.0.1 | spec/spec_helper.rb |