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

21 lines
580 B
Ruby
Raw Normal View History

2014-09-03 08:49:59 +00:00
require File.expand_path('../integration', __FILE__)
module Adapters
class EMHttpTest < Faraday::TestCase
def adapter() :em_http end
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 } }
assert_equal host, conn.options[:bind][:host]
end
end unless jruby? and ssl_mode?
# https://github.com/eventmachine/eventmachine/issues/180
end
end