mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-06 00:03:36 -04:00
18 lines
384 B
Ruby
18 lines
384 B
Ruby
require File.expand_path('../integration', __FILE__)
|
|
|
|
module Adapters
|
|
class Patron < Faraday::TestCase
|
|
|
|
def adapter() :patron end
|
|
|
|
Integration.apply(self, :NonParallel) do
|
|
# https://github.com/toland/patron/issues/34
|
|
undef :test_PATCH_send_url_encoded_params
|
|
|
|
# https://github.com/toland/patron/issues/52
|
|
undef :test_GET_with_body
|
|
end
|
|
|
|
end
|
|
end
|