summaryrefslogtreecommitdiff
path: root/spec/ruby/library/net-ftp/return_code_spec.rb
blob: 35a6232f7ee3b5e180010f5257b8faf94b0e758f (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_relative '../../spec_helper'
require_relative 'spec_helper'

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

  it "outputs a warning and returns a newline" do
    -> 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
    -> { @ftp.return_code = 123 }.should complain(/warning: Net::FTP#return_code= is obsolete and do nothing/)
  end
end