Sha256: daed3751b8bbf67cc1a4fb6dc3203fb6687dec0e91ea681e7df023549939e1ad
Contents?: true
Size: 1.67 KB
Versions: 2
Compression:
Stored size: 1.67 KB
Contents
ENV['THOR_COLUMNS'] = "80" require 'simplecov' require 'coveralls' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter ] SimpleCov.start require 't' require 'json' require 'rspec' require 'timecop' require 'webmock/rspec' RSpec.configure do |config| config.expect_with :rspec do |c| c.syntax = :expect end config.before(:each) do stub_post("/oauth2/token").with(:body => "grant_type=client_credentials").to_return(:body => fixture("bearer_token.json"), :headers => {:content_type => "application/json; charset=utf-8"}) end end def a_delete(path, endpoint='https://api.twitter.com') a_request(:delete, endpoint + path) end def a_get(path, endpoint='https://api.twitter.com') a_request(:get, endpoint + path) end def a_post(path, endpoint='https://api.twitter.com') a_request(:post, endpoint + path) end def a_put(path, endpoint='https://api.twitter.com') a_request(:put, endpoint + path) end def stub_delete(path, endpoint='https://api.twitter.com') stub_request(:delete, endpoint + path) end def stub_get(path, endpoint='https://api.twitter.com') stub_request(:get, endpoint + path) end def stub_post(path, endpoint='https://api.twitter.com') stub_request(:post, endpoint + path) end def stub_put(path, endpoint='https://api.twitter.com') 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 def status_from_fixture(file) Twitter::Status.new(JSON.parse(fixture(file).read, :symbolize_names => true)) end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
t-2.0.1 | spec/helper.rb |
t-2.0.0 | spec/helper.rb |