1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
require File.expand_path('../integration', __FILE__)
module Adapters
class TyphoeusTest < Faraday::TestCase
def adapter() :typhoeus end
Integration.apply(self, :Parallel) do
# https://github.com/dbalatero/typhoeus/issues/75
undef :test_GET_with_body
# Not a Typhoeus bug, but WEBrick inability to handle "100-continue"
# which libcurl seems to generate for this particular request:
undef :test_POST_sends_files
# inconsistent outcomes ranging from successful response to connection error
undef :test_proxy_auth_fail if ssl_mode?
def test_binds_local_socket
host = '1.2.3.4'
conn = create_connection :request => { :bind => { :host => host } }
assert_equal host, conn.options[:bind][:host]
end
end unless jruby?
end
end
|