Sha256: a08efe240f576091035d6699ae9f568dc18e79d2abe1998b4e8aac4fef1a9132

Contents?: true

Size: 405 Bytes

Versions: 3

Compression:

Stored size: 405 Bytes

Contents

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

WebMock.disable_net_connect!(:allow => 'codeclimate.com')

SimpleCov.start

def a_get(path)
  a_request(:get, FullContact.endpoint + path)
end

def stub_get(path)
  stub_request(:get, FullContact.endpoint + path)
end

def fixture_path
  File.expand_path("../fixtures", __FILE__)
end

def fixture(file)
  File.new(fixture_path + '/' + file)
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
fullcontact-api-ruby-0.1.0 spec/helper.rb
fullcontact-0.18.0 spec/helper.rb
fullcontact-0.17.0 spec/helper.rb