summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net/http/HTTPClientExcepton_spec.rb
blob: 08347464ecb9d33af65a69d1baa58c35de24b19b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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