summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net-http/HTTPBadResponse_spec.rb
blob: 8f2e8ccfafc81294a5750316d059286bcac049e4 (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'
require 'net/http'

describe "Net::HTTPBadResponse" do
  it "is a subclass of StandardError" do
    Net::HTTPBadResponse.should < StandardError
  end
end