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/HTTPError_spec.rb

13 lines
319 B
Ruby
Raw Normal View History

require File.expand_path('../../../../spec_helper', __FILE__)
require 'net/http'
describe "Net::HTTPError" do
it "is a subclass of Net::ProtocolError" do
Net::HTTPError.should < Net::ProtocolError
end
it "includes the Net::HTTPExceptions module" do
Net::HTTPError.should < Net::HTTPExceptions
end
end