faraday/test/adapters/net_http_test.rb
2012-08-16 18:21:00 +02:00

15 lines
282 B
Ruby

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