mirror of
https://github.com/HoneyryderChuck/httpx.git
synced 2025-10-04 00:00:37 -04:00
26 lines
443 B
Ruby
26 lines
443 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "support/http_test"
|
|
|
|
class HTTP2Test < HTTPTest
|
|
include Requests
|
|
include Get
|
|
include Head
|
|
include WithBody
|
|
include Headers
|
|
include ResponseBody
|
|
include IO
|
|
|
|
include Plugins::Proxy
|
|
include Plugins::Authentication
|
|
include Plugins::FollowRedirects
|
|
include Plugins::Cookies
|
|
include Plugins::Compression
|
|
|
|
private
|
|
|
|
def origin
|
|
"https://nghttp2.org/httpbin"
|
|
end
|
|
end
|