summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net-http/httpresponse/exception_type_spec.rb
blob: dd2761a744cd7acb2cfacbcc776818419a41b7f1 (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