Sha256: e0df216a50b6c121209d34b051cbc1cf76a0e239ac2ead04165c67454a4b5292
Contents?: true
Size: 540 Bytes
Versions: 8
Compression:
Stored size: 540 Bytes
Contents
if ENV.fetch('COVERAGE', false) require 'simplecov' SimpleCov.start 'rails' end require 'webmock/rspec' RSpec.configure do |config| config.expect_with :rspec do |expectations| expectations.syntax = :expect end config.mock_with :rspec do |mocks| mocks.syntax = :expect mocks.verify_partial_doubles = true end config.example_status_persistence_file_path = 'tmp/rspec_examples.txt' config.order = :random # config.infer_spec_type_from_file_location! end WebMock.disable_net_connect!(allow_localhost: true)
Version data entries
8 entries across 8 versions & 1 rubygems