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

25 lines
412 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
private
def origin
"https://nghttp2.org/httpbin"
end
end