Sha256: a5c804e42e0f0faa5a6f140451fa941e3d73bcddd1878bfe0da7e6571f3c2343
Contents?: true
Size: 782 Bytes
Versions: 20
Compression:
Stored size: 782 Bytes
Contents
require 'webmock/rspec' require 'tessa' require 'tempfile' Dir[File.expand_path("../support/*.rb", __FILE__)].each do |file| require file end if ENV['SIMPLE_COV'] || ENV['CC_TEST_REPORTER_ID'] require 'simplecov' SimpleCov.start end RSpec.configure do |config| WebMock.disable_net_connect! 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 if config.files_to_run.one? config.default_formatter = 'doc' end config.filter_run :focus config.run_all_when_everything_filtered = true config.disable_monkey_patching! config.warnings = true config.order = :random Kernel.srand config.seed end
Version data entries
20 entries across 20 versions & 1 rubygems