Sha256: 38e6c2414537089e5a6ba8523eef783adfbdb229339ff8238d1b481d50092e5c

Contents?: true

Size: 834 Bytes

Versions: 7

Compression:

Stored size: 834 Bytes

Contents

require "simplecov"
SimpleCov.start do
  add_filter "spec"
  add_group "lib", "lib"
end

require "mundipagg"
require "vcr"

VCR.configure do |config|
  config.cassette_library_dir = "spec/fixtures/vcr_cassettes"
  config.hook_into :webmock
  config.configure_rspec_metadata!
end

I18n.default_locale = :en
I18n.load_path = Dir["spec/fixtures/*.yml"]

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.warnings = true

  if config.files_to_run.one?
    config.default_formatter = "doc"
  end

  config.order = :random
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
better-mundipagg-0.2.11 spec/spec_helper.rb
better-mundipagg-0.2.10 spec/spec_helper.rb
better-mundipagg-0.2.9 spec/spec_helper.rb
better-mundipagg-0.2.8 spec/spec_helper.rb
better-mundipagg-0.2.7 spec/spec_helper.rb
better-mundipagg-0.2.6 spec/spec_helper.rb
better-mundipagg-0.2.5 spec/spec_helper.rb