mirror of
https://github.com/lostisland/faraday.git
synced 2025-12-07 00:01:45 -05:00
15 lines
320 B
Ruby
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
|