Sha256: c0245f2a73ff91bd340de3d0918a2988eafaf58a7290a11f55a8e428050a04a8
Contents?: true
Size: 365 Bytes
Versions: 5
Compression:
Stored size: 365 Bytes
Contents
require 'rspec' require 'webmock/rspec' require 'simplecov' SimpleCov.start def a_get(path) a_request(:get, Rainmaker.endpoint + path) end def stub_get(path) stub_request(:get, Rainmaker.endpoint + path) end def fixture_path File.expand_path("../fixtures", __FILE__) end def fixture(file) File.new(fixture_path + '/' + file) end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
rainmaker-0.1.5 | spec/helper.rb |
rainmaker-0.1.4 | spec/helper.rb |
rainmaker-0.1.3 | spec/helper.rb |
rainmaker-0.1.1 | spec/helper.rb |
rainmaker-0.0.1 | spec/helper.rb |