httpx/test/http2_test.rb
2018-01-04 23:17:07 +00:00

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