faraday/test/adapters/excon_test.rb
2012-08-16 18:21:04 +02:00

14 lines
294 B
Ruby

require File.expand_path('../integration', __FILE__)
module Adapters
class ExconTest < Faraday::TestCase
def adapter() :excon end
Integration.apply(self, :NonParallel) do
# https://github.com/geemus/excon/issues/126 ?
undef :test_timeout if ssl_mode?
end
end
end