httpx/test/http1_test.rb
2018-01-04 23:14:45 +00:00

27 lines
461 B
Ruby

# frozen_string_literal: true
require_relative "support/http_test"
class HTTP1Test < HTTPTest
include Requests
include Head
include Get
include ChunkedGet
include WithBody
include WithChunkedBody
include Headers
include ResponseBody
include IO
include Plugins::Proxy
include Plugins::Authentication
include Plugins::FollowRedirects
include Plugins::Cookies
private
def origin
"http://nghttp2.org/httpbin"
end
end