Sha256: 6676aecb661494fda7d6ba4b648f438474c5b30988b2ea7aabb81e3c3c5932d8
Contents?: true
Size: 999 Bytes
Versions: 1
Compression:
Stored size: 999 Bytes
Contents
# frozen_string_literal: true require 'rspec' require 'webmock/rspec' require 'simplecov' require 'simplecov-cobertura' SimpleCov.start do add_filter 'spec' end SimpleCov.formatters = [ SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::CoberturaFormatter, ] require 'bundler' Bundler.require(:default, :test) require 'acfs' 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.raise_errors_for_deprecations! config.before do Acfs.runner.clear Acfs::Stub.clear end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acfs-2.0.0 | spec/spec_helper.rb |