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