Sha256: 648e983438db787c43c2355249f848ade19932720717cda9b221bcd56b3b2199

Contents?: true

Size: 584 Bytes

Versions: 13

Compression:

Stored size: 584 Bytes

Contents

# frozen_string_literal: true
if ENV.fetch('COVERAGE', false)
  require 'simplecov'
  SimpleCov.start 'rails'
end

require 'webmock/rspec'

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

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

  config.example_status_persistence_file_path = 'tmp/rspec_examples.txt'
  config.order = :random
end

WebMock.disable_net_connect!(allow_localhost: true)

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
onotole-1.1.3 templates/spec_helper.rb
onotole-1.1.1 templates/spec_helper.rb
onotole-1.1.0 templates/spec_helper.rb
onotole-1.0.17 templates/spec_helper.rb
onotole-1.0.16 templates/spec_helper.rb
onotole-1.0.15 templates/spec_helper.rb
onotole-1.0.13 templates/spec_helper.rb
onotole-1.0.11 templates/spec_helper.rb
onotole-1.0.10 templates/spec_helper.rb
onotole-1.0.8 templates/spec_helper.rb
onotole-1.0.7 templates/spec_helper.rb
onotole-1.0.6 templates/spec_helper.rb
onotole-1.0.4 templates/spec_helper.rb