Sha256: dd55ce73183b9cfefbf3a29e4ffc6bd9876607d8d309e4c522c6acb0dca4a424
Contents?: true
Size: 721 Bytes
Versions: 6
Compression:
Stored size: 721 Bytes
Contents
require 'rspec' require 'bundler' Bundler.require require 'multi_process' Dir[File.expand_path('spec/support/**/*.rb')].each { |f| require f } RSpec.configure do |config| # ## Mock Framework # # If you prefer to use mocha, flexmock or RR, uncomment the appropriate line: # # config.mock_with :mocha # config.mock_with :flexmock # config.mock_with :rr # 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' # Raise error when using old :should expectation syntax. config.raise_errors_for_deprecations! end
Version data entries
6 entries across 6 versions & 1 rubygems