Sha256: 7f0192b0b5b14be75335f3cc8f3daa2b806ef3949af939b16c41f34f6d22061d

Contents?: true

Size: 412 Bytes

Versions: 5

Compression:

Stored size: 412 Bytes

Contents

require 'bridge_blueprint'
require 'rspec'
require 'webmock/rspec'
require 'json'
require 'pry'

RSpec.configure do |config|
  Dir["./spec/support/**/*.rb"].sort.each {|f| require f}

  config.before(:each) do
    WebMock.disable_net_connect!
    WebMock.stub_request(:any, /api\/.*/).to_rack(FakeBridge)
  end
end


def fixture(*file)
  File.new(File.join(File.expand_path("../fixtures", __FILE__), *file))
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bridge_blueprint-0.0.05 spec/test_helper.rb
bridge_blueprint-0.0.04 spec/test_helper.rb
bridge_blueprint-0.0.03 spec/test_helper.rb
bridge_blueprint-0.0.02 spec/test_helper.rb
bridge_blueprint-0.0.01 spec/test_helper.rb