mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-06 00:03:36 -04:00
20 lines
473 B
Ruby
20 lines
473 B
Ruby
require File.expand_path('../integration', __FILE__)
|
|
|
|
module Adapters
|
|
class ExconTest < Faraday::TestCase
|
|
|
|
def adapter() :excon end
|
|
|
|
# https://github.com/geemus/excon/issues/98
|
|
if defined?(RUBY_ENGINE) and "rbx" == RUBY_ENGINE
|
|
warn "Warning: Skipping Excon tests on Rubinius"
|
|
else
|
|
Integration.apply(self, :NonParallel) do
|
|
# https://github.com/eventmachine/eventmachine/pull/289
|
|
undef :test_timeout
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|