Sha256: 1b4cc75b87f648bb66a800bc842ed094bedc49dae6dc4a05abe6e06abcc57e12

Contents?: true

Size: 802 Bytes

Versions: 10

Compression:

Stored size: 802 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.enforce_available_locales = true

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

10 entries across 10 versions & 1 rubygems

Version Path
better-mundipagg-0.2.4 spec/spec_helper.rb
better-mundipagg-0.2.3 spec/spec_helper.rb
better-mundipagg-0.2.2 spec/spec_helper.rb
better-mundipagg-0.2.1 spec/spec_helper.rb
better-mundipagg-0.2.0 spec/spec_helper.rb
better-mundipagg-0.1.5 spec/spec_helper.rb
better-mundipagg-0.1.3 spec/spec_helper.rb
better-mundipagg-0.1.2 spec/spec_helper.rb
better-mundipagg-0.1.1 spec/spec_helper.rb
better-mundipagg-0.1.0 spec/spec_helper.rb