Sha256: 341f340f76a4f8a119637ced314ec3e30a13ddc8968201883247921fb6a5b4ae
Contents?: true
Size: 907 Bytes
Versions: 2
Compression:
Stored size: 907 Bytes
Contents
require 'rspec' require 'webmock/rspec' require 'simplecov' SimpleCov.start do add_filter 'spec' end if ENV['CI'] require 'codecov' SimpleCov.formatter = SimpleCov::Formatter::Codecov end require 'bundler' Bundler.require(:default, :test) 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' config.before :each do Acfs.runner.clear Acfs::Stub.clear end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
acfs-1.3.2 | spec/spec_helper.rb |
acfs-1.3.1 | spec/spec_helper.rb |