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

describe "Net::HTTPRetriableError" do
  it "is a subclass of Net::ProtoRetriableError" do
    Net::HTTPRetriableError.should < Net::ProtoRetriableError
  end

  it "includes the Net::HTTPExceptions module" do
    Net::HTTPRetriableError.should < Net::HTTPExceptions
  end
end