1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/library/net/http/HTTPClientExcepton_spec.rb

15 lines
378 B
Ruby
Raw Normal View History

require_relative '../../../spec_helper'
require 'net/http'
ruby_version_is "2.6" do
describe "Net::HTTPClientException" do
it "is a subclass of Net::ProtoServerError" do
Net::HTTPClientException.should < Net::ProtoServerError
end
it "includes the Net::HTTPExceptions module" do
Net::HTTPClientException.should < Net::HTTPExceptions
end
end
end