Sha256: f051353abb9ab79c5d1aaf694fa322479b9baa43b1561786735a94bdac688c81
Contents?: true
Size: 868 Bytes
Versions: 9
Compression:
Stored size: 868 Bytes
Contents
require File.expand_path('../integration', __FILE__) module Adapters class EMSynchronyTest < Faraday::TestCase def adapter() :em_synchrony end unless jruby? Integration.apply(self, :Parallel) do # https://github.com/eventmachine/eventmachine/pull/289 undef :test_timeout def test_binds_local_socket host = '1.2.3.4' conn = create_connection :request => { :bind => { :host => host } } #put conn.get('/who-am-i').body assert_equal host, conn.options[:bind][:host] end end end def test_custom_adapter_config url = URI('https://example.com:1234') adapter = Faraday::Adapter::EMSynchrony.new nil, inactivity_timeout: 20 req = adapter.create_request(url: url, request: {}) assert_equal 20, req.connopts.inactivity_timeout end end end
Version data entries
9 entries across 8 versions & 2 rubygems