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

describe "Net::FTPTempError" do
  it "is an Exception" do
    Net::FTPTempError.should < Exception
  end

  it "is a subclass of Net::FTPError" do
    Net::FTPPermError.should < Net::FTPError
  end
end