Sha256: 324668853a89d0b0142383de6054860f703f0c08edb940cf7276a3811c9d37b2

Contents?: true

Size: 577 Bytes

Versions: 6

Compression:

Stored size: 577 Bytes

Contents

require 'simplecov'
require 'webmock/rspec'
require 'vcr'

SimpleCov.start

VCR.configure do |c|
  c.cassette_library_dir = 'spec/vcr'
  c.hook_into :webmock
  c.configure_rspec_metadata!
end
WebMock.disable_net_connect!(allow_localhost: 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.disable_monkey_patching!

  config.warnings = false

  config.order = :random
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
awl_tags_twitter-1.0.2 spec/spec_helper.rb
awl_tags_twitter-1.0.1 spec/spec_helper.rb
awl_tags_twitter-1.0.0 spec/spec_helper.rb
awl_tags_twitter-0.0.4 spec/spec_helper.rb
awl_tags_twitter-0.0.3 spec/spec_helper.rb
awl_tags_twitter-0.0.1 spec/spec_helper.rb