mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-08 00:03:41 -04:00
14 lines
294 B
Ruby
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
|