Sha256: 7586ebe933d013e17915a03d88a23ed438e62aa6f7aa2381919f33362774422d

Contents?: true

Size: 562 Bytes

Versions: 18

Compression:

Stored size: 562 Bytes

Contents

# frozen_string_literal: true

require "bundler/setup"
Bundler.setup

require "simplecov"
SimpleCov.start

require "maremma"
require "rspec"
require "rack/test"
require "webmock/rspec"
require "vcr"

RSpec.configure do |config|
  config.include WebMock::API
  config.include Rack::Test::Methods
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

VCR.configure do |c|
  c.cassette_library_dir = "spec/fixtures/vcr_cassettes"
  c.hook_into :webmock
  c.ignore_localhost = true
  c.ignore_hosts "codeclimate.com"
  c.configure_rspec_metadata!
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
maremma-5.0.0 spec/spec_helper.rb
maremma-4.9.9 spec/spec_helper.rb
maremma-4.9.8 spec/spec_helper.rb
maremma-4.9.7 spec/spec_helper.rb
maremma-4.9.6 spec/spec_helper.rb
maremma-4.9.5 spec/spec_helper.rb
maremma-4.9.4 spec/spec_helper.rb
maremma-4.9.3 spec/spec_helper.rb
maremma-4.9.2 spec/spec_helper.rb
maremma-4.9 spec/spec_helper.rb
maremma-4.7.4 spec/spec_helper.rb
maremma-4.7.2 spec/spec_helper.rb
maremma-4.7.1 spec/spec_helper.rb
maremma-4.8 spec/spec_helper.rb
maremma-4.7 spec/spec_helper.rb
maremma-4.6.1 spec/spec_helper.rb
maremma-4.6 spec/spec_helper.rb
maremma-4.5 spec/spec_helper.rb