Sha256: 02b70ff9c5eeee078b1d2091015743816a9bfa9a57b2c5aa4e51e3b27ed77226

Contents?: true

Size: 413 Bytes

Versions: 1

Compression:

Stored size: 413 Bytes

Contents

require "bundler/setup"
require "uatu"
require 'webmock/rspec'
require 'support/fake_marvel_api'

WebMock.disable_net_connect!(allow_localhost: true)

RSpec.configure do |config|
  config.example_status_persistence_file_path = ".rspec_status"

  config.expect_with :rspec do |c|
    c.syntax = :expect
  end

  config.before(:each) do
    stub_request(:any, /gateway.marvel.com/).to_rack(FakeMarvelApi)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
uatu-marvel-0.1.0 spec/spec_helper.rb