Sha256: f69ad01c2f64ee4020e7754377ea24a9fa8df4db946b64fc8414fe7217276939

Contents?: true

Size: 470 Bytes

Versions: 5

Compression:

Stored size: 470 Bytes

Contents

require "simplecov"
SimpleCov.start
if ENV["CI"] == "true"
  require "codecov"
  SimpleCov.formatter = SimpleCov::Formatter::Codecov
end

Dir["./spec/support/**/*.rb"].each { |file| require file }

RSpec.configure do |config|
  config.include Features

  config.expect_with :rspec do |expectations|
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
  end

  config.mock_with :rspec do |mocks|
    mocks.verify_partial_doubles = true
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
arkenstone-0.6.0 spec/spec_helper.rb
arkenstone-0.5.2 spec/spec_helper.rb
arkenstone-0.5.1 spec/spec_helper.rb
arkenstone-0.3.0 spec/spec_helper.rb
arkenstone-0.2.0 spec/spec_helper.rb