Sha256: d2e68fd981584363f608c66ba31961342bc72ad7e95c45d0fb5b90952ad99f5b
Contents?: true
Size: 842 Bytes
Versions: 93
Compression:
Stored size: 842 Bytes
Contents
require 'webmock/rspec' require 'rest-client' require_relative './helpers' # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration RSpec.configure do |config| config.raise_errors_for_deprecations! # Run specs in random order to surface order dependencies. If you find an # order dependency and want to debug it, you can fix the order by providing # the seed, which is printed after each run. # --seed 1234 config.order = 'random' # always run with ruby warnings enabled # TODO: figure out why this is so obscenely noisy (rspec bug?) # config.warnings = true # add helpers config.include Helpers, :include_helpers config.mock_with :rspec do |mocks| mocks.yield_receiver_to_any_instance_implementation_blocks = true end end # always run with ruby warnings enabled (see above) $VERBOSE = true
Version data entries
93 entries across 68 versions & 4 rubygems