Sha256: 7189f4afa88f6d10b28dd5d1300f18ec5a78a75532695abf485b588363fa000c
Contents?: true
Size: 725 Bytes
Versions: 5
Compression:
Stored size: 725 Bytes
Contents
# frozen_string_literal: true require 'simplecov_setup' require 'bundler/setup' Bundler.require(:default, :development) RSpec.configure do |config| config.expect_with :rspec do |expectations| expectations.include_chain_clauses_in_custom_matcher_descriptions = true end config.mock_with :rspec do |mocks| mocks.verify_partial_doubles = true end config.filter_run :focus config.run_all_when_everything_filtered = true config.disable_monkey_patching! config.expose_dsl_globally = false if config.files_to_run.one? config.default_formatter = 'doc' end config.order = :random Kernel.srand config.seed end Dir['./spec/support/**/*.rb'].sort.each { |f| require f } require 'soapy_bing'
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
soapy_bing-0.3.1 | spec/spec_helper.rb |
soapy_bing-0.3.0 | spec/spec_helper.rb |
soapy_bing-0.2.0 | spec/spec_helper.rb |
soapy_bing-0.1.0 | spec/spec_helper.rb |
soapy_bing-0.0.5 | spec/spec_helper.rb |