Sha256: 9430319742d5e7287ce39dc9413fce320844bc9e2f9858dd12ba4048d95f0aa5
Contents?: true
Size: 1.07 KB
Versions: 4
Compression:
Stored size: 1.07 KB
Contents
unless ENV['CI'] require 'simplecov' SimpleCov.start do add_filter 'spec' end end ENV['THOR_COLUMNS'] = "80" require 't' require 'rspec' require 'timecop' require 'webmock/rspec' T.env = 'test' 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
t-0.9.9 | spec/helper.rb |
t-0.9.8 | spec/helper.rb |
t-0.9.7 | spec/helper.rb |
t-0.9.6 | spec/helper.rb |