twitter-status-bot/.gems/gems/faraday-0.9.0/test/adapters/net_http_test.rb

15 lines
282 B
Ruby
Raw Normal View History

2014-09-03 08:49:59 +00:00
require File.expand_path('../integration', __FILE__)
module Adapters
class NetHttpTest < Faraday::TestCase
def adapter() :net_http end
behaviors = [:NonParallel]
behaviors << :Compression if RUBY_VERSION >= '1.9'
Integration.apply(self, *behaviors)
end
end