faraday/test/adapters/patron_test.rb

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