Sha256: 18273c0f81f0c9d00b026c0a55ee40eb1fdb22c9afff1baeae7afec8e6b11657

Contents?: true

Size: 1.07 KB

Versions: 5

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true

require 'simplecov'

SimpleCov.start 'rails' do
  # TODO: interactors
  add_group 'Interactions', 'app/interactions'
end

require 'webmock/rspec'
require 'timecop'

# http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
RSpec.configure do |config|
  config.expect_with :rspec do |expectations|
    expectations.include_chain_clauses_in_custom_matcher_descriptions = true
    expectations.syntax = :expect
  end

  config.mock_with :rspec do |mocks|
    mocks.syntax = :expect
    mocks.verify_partial_doubles = true
  end

  config.default_formatter = 'doc' if config.files_to_run.one?
  config.disable_monkey_patching!
  config.example_status_persistence_file_path = 'tmp/rspec_examples.txt'
  config.filter_run_when_matching :focus
  config.order = :random
  config.profile_examples = 10
  config.shared_context_metadata_behavior = :apply_to_host_groups

  Kernel.srand config.seed
end

WebMock.disable_net_connect!(
  allow_localhost: true, allow: %w[chromedriver.storage.googleapis.com]
)

# Only allow Timecop with block syntax
Timecop.safe_mode = true

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
welaika-suspenders-3.0 templates/spec_helper.rb
welaika-suspenders-2.36 templates/spec_helper.rb
welaika-suspenders-2.35 templates/spec_helper.rb
welaika-suspenders-2.34 templates/spec_helper.rb
welaika-suspenders-2.33 templates/spec_helper.rb