summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net/http/httpresponse/exception_type_spec.rb
blob: 0c9c11291f291ed33bfa9c352ebce98b3b447964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require_relative '../../../../spec_helper'
require 'net/http'

describe "Net::HTTPResponse.exception_type" do
  it "returns self's 'EXCEPTION_TYPE' constant" do
    Net::HTTPUnknownResponse.exception_type.should == Net::HTTPError
    Net::HTTPInformation.exception_type.should == Net::HTTPError
    Net::HTTPSuccess.exception_type.should == Net::HTTPError
    Net::HTTPRedirection.exception_type.should == Net::HTTPRetriableError
    Net::HTTPClientError.exception_type.should == Net::HTTPClientException
    Net::HTTPServerError.exception_type.should == Net::HTTPFatalError
  end
end