faraday/test/adapters/net_http_persistent_test.rb
2012-08-12 15:59:46 +02:00

15 lines
320 B
Ruby

require File.expand_path('../integration', __FILE__)
module Adapters
class NetHttpPersistentTest < Faraday::TestCase
def adapter() :net_http_persistent end
Integration.apply(self, :NonParallel) do
# https://github.com/drbrain/net-http-persistent/issues/33
undef :test_timeout
end
end
end