Sha256: bd904efb895817e2469b1628d1dfa45a1cddfcb3c46314cbb42fb6fa6b2fd6a7
Contents?: true
Size: 554 Bytes
Versions: 16
Compression:
Stored size: 554 Bytes
Contents
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
16 entries across 16 versions & 5 rubygems