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

21 lines
537 B
Ruby
Raw Normal View History

2014-09-03 08:49:59 +00:00
require File.expand_path('../integration', __FILE__)
module Adapters
class NetHttpPersistentTest < Faraday::TestCase
def adapter() :net_http_persistent end
Integration.apply(self, :NonParallel) do
def setup
if defined?(Net::HTTP::Persistent)
# work around problems with mixed SSL certificates
# https://github.com/drbrain/net-http-persistent/issues/45
http = Net::HTTP::Persistent.new('Faraday')
http.ssl_cleanup(4)
end
end if ssl_mode?
end
end
end