Sha256: 0f232f1072f26759ea9153c98304446c9ff08d1178d3f1ce690d49a8b8f6e583
Contents?: true
Size: 1.03 KB
Versions: 3
Compression:
Stored size: 1.03 KB
Contents
unless ENV['CI'] require 'simplecov' SimpleCov.start do add_filter 'spec' end end require 't' require 'rspec' require 'timecop' require 'webmock/rspec' def a_delete(path, endpoint=Twitter.endpoint) a_request(:delete, endpoint + path) end def a_get(path, endpoint=Twitter.endpoint) a_request(:get, endpoint + path) end def a_post(path, endpoint=Twitter.endpoint) a_request(:post, endpoint + path) end def a_put(path, endpoint=Twitter.endpoint) a_request(:put, endpoint + path) end def stub_delete(path, endpoint=Twitter.endpoint) stub_request(:delete, endpoint + path) end def stub_get(path, endpoint=Twitter.endpoint) stub_request(:get, endpoint + path) end def stub_post(path, endpoint=Twitter.endpoint) stub_request(:post, endpoint + path) end def stub_put(path, endpoint=Twitter.endpoint) stub_request(:put, endpoint + path) end def project_path File.expand_path("../..", __FILE__) 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 & 1 rubygems
Version | Path |
---|---|
t-0.8.1 | spec/helper.rb |
t-0.8.0 | spec/helper.rb |
t-0.7.0 | spec/helper.rb |