Sha256: 648e983438db787c43c2355249f848ade19932720717cda9b221bcd56b3b2199
Contents?: true
Size: 584 Bytes
Versions: 13
Compression:
Stored size: 584 Bytes
Contents
# frozen_string_literal: true if ENV.fetch('COVERAGE', false) require 'simplecov' SimpleCov.start 'rails' end require 'webmock/rspec' # http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration 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 end WebMock.disable_net_connect!(allow_localhost: true)
Version data entries
13 entries across 13 versions & 1 rubygems