Sha256: c58b73a0e5da25995d0ef94c65715f2651663e0b6295c632d2d88982cac82878

Contents?: true

Size: 425 Bytes

Versions: 1

Compression:

Stored size: 425 Bytes

Contents

# frozen_string_literal: true

require 'rspec/collection_matchers'
require 'webmock/rspec'

if ENV['CI']
  require 'simplecov'
  SimpleCov.start

  require 'codecov'
  SimpleCov.formatter = SimpleCov::Formatter::Codecov
end

$: << File.dirname(__FILE__) + '/../lib'
require 'roadie'

RSpec.configure do |config|
  config.run_all_when_everything_filtered = true
end

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
roadie-4.0.0 spec/spec_helper.rb