summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net/ftp/return_code_spec.rb
blob: 64100bc3fc4a0715157deae21db8dd2ebef5e853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require File.expand_path('../../../../spec_helper', __FILE__)
require File.expand_path('../spec_helper', __FILE__)

describe "Net::FTP#return_code" do
  before :each do
    @ftp = Net::FTP.new
  end

  it "outputs a warning and returns a newline" do
    lambda do
      @ftp.return_code.should == "\n"
    end.should complain(/warning: Net::FTP#return_code is obsolete and do nothing/)
  end
end

describe "Net::FTP#return_code=" do
  before :each do
    @ftp = Net::FTP.new
  end

  it "outputs a warning" do
    lambda { @ftp.return_code = 123 }.should complain(/warning: Net::FTP#return_code= is obsolete and do nothing/)
  end
end