summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net/FTPError_spec.rb
blob: 84128511db22f02932b0609173de1f0f6bbe5cd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'

ruby_version_is ""..."3.1" do
  require 'net/ftp'

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