Sha256: 7437f07e099f6c9d6b3015f4d48f46d0236cacfbedd9307b6985c89fc8cd0b5f

Contents?: true

Size: 474 Bytes

Versions: 7

Compression:

Stored size: 474 Bytes

Contents

require 'rspec'
require 'webmock/rspec'
require 'simplecov'
require 'codeclimate-test-reporter'
CodeClimate::TestReporter.start

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

7 entries across 7 versions & 1 rubygems

Version Path
fullcontact-0.16.0 spec/helper.rb
fullcontact-0.15.0 spec/helper.rb
fullcontact-0.14.0 spec/helper.rb
fullcontact-0.13.0 spec/helper.rb
fullcontact-0.12.0 spec/helper.rb
fullcontact-0.11.0 spec/helper.rb
fullcontact-0.10.0 spec/helper.rb