summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net-http/HTTPRetriableError_spec.rb
blob: 677731fb6833804c0f6ba28edc0ca752bac41bed (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