Sha256: 86be492e84c9e278d317c1b9c7bb7faa5c199eb82e18cdef15851f12ee35ce5d

Contents?: true

Size: 790 Bytes

Versions: 5

Compression:

Stored size: 790 Bytes

Contents

require 'simplecov'
require 'codeclimate-test-reporter'
SimpleCov.add_filter 'vendor'
SimpleCov.formatters = []
SimpleCov.start CodeClimate::TestReporter.configuration.profile

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.example_status_persistence_file_path = "spec/examples.txt"

  config.disable_monkey_patching!

  config.warnings = true

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

  config.profile_examples = 10

  config.order = :random

  Kernel.srand config.seed
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
versionology-0.2.0.pre.alpha.pre.22 spec/spec_helper.rb
versionology-0.2.0.pre.alpha.pre.21 spec/spec_helper.rb
versionology-0.2.0.pre.alpha.pre.20 spec/spec_helper.rb
versionology-0.2.0.pre.alpha.pre.18 spec/spec_helper.rb
versionology-0.2.0.pre.alpha.pre.17 spec/spec_helper.rb