Sha256: 375eab8c0b2b53a0a460203e94531aa57bde15070f6669107980bd776c74b586
Contents?: true
Size: 856 Bytes
Versions: 1
Compression:
Stored size: 856 Bytes
Contents
require 'coveralls' Coveralls.wear! do add_filter 'spec' end require 'bundler' Bundler.require require 'acfs' require 'webmock/rspec' 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! config.before :each do Acfs.runner.clear Acfs::Stub.clear end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acfs-0.25.0.1.b228 | spec/spec_helper.rb |