mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-08 00:03:41 -04:00
15 lines
297 B
Ruby
15 lines
297 B
Ruby
require File.expand_path('../integration', __FILE__)
|
|
|
|
module Adapters
|
|
class DefaultTest < Faraday::TestCase
|
|
|
|
def adapter() :default end
|
|
|
|
Integration.apply(self, :NonParallel) do
|
|
# default stack is not configured with Multipart
|
|
undef :test_POST_sends_files
|
|
end
|
|
|
|
end
|
|
end
|