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

describe "Net::FTP#resume" do
  it "returns true when self is set to resume uploads/downloads" do
    ftp = Net::FTP.new
    ftp.resume.should be_false

    ftp.resume = true
    ftp.resume.should be_true
  end
end

describe "Net::FTP#resume=" do
  it "sets self to resume uploads/downloads when set to true" do
    ftp = Net::FTP.new
    ftp.resume = true
    ftp.resume.should be_true

    ftp.resume = false
    ftp.resume.should be_false
  end
end