Sha256: 74d50d045073b3504c132ee17655d8fa321f7afedbd978bf289d57e3b44386bc

Contents?: true

Size: 604 Bytes

Versions: 4

Compression:

Stored size: 604 Bytes

Contents

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.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,
  allow: "chromedriver.storage.googleapis.com"
)

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
suspenders-20230113.0 templates/spec_helper.rb
suspenders-1.56.1 templates/spec_helper.rb
suspenders-1.55.1 templates/spec_helper.rb
suspenders-1.55.0 templates/spec_helper.rb