summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net/http/httpresponse/exception_type_spec.rb
blob: e1a48e0c120a86a46e726cf96c11ccda344bf944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require File.expand_path('../../../../../spec_helper', __FILE__)
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::HTTPServerException
    Net::HTTPServerError.exception_type.should == Net::HTTPFatalError
  end
end