Sha256: 07b94f9682aceda4474c67ff3518e3b31bd9fd69dd2160c851f66269fedb1d16
Contents?: true
Size: 712 Bytes
Versions: 5
Compression:
Stored size: 712 Bytes
Contents
When /^the client cd's to "(.*?)"$/ do |path| capture_error do step %Q(the client successfully cd's to "#{path}") end end # As of Ruby 1.9.3-p125, Net::FTP#chdir('..') will send a CDUP. # However, that could conceivably change: The use of CDUP not # required by the FTP protocol. Therefore we use this step to # ensure that CDUP is sent and therefore tested. When /^the client successfully cd's up$/ do client.raw 'CDUP' end When /^the client successfully cd's to "(.*?)"$/ do |path| client.chdir path end Then /^the current directory should be "(.*?)"$/ do |path| expect(client.pwd).to eq path end Then /^the XPWD directory should be "(.*?)"$/ do |path| expect(client.xpwd).to eq path end
Version data entries
5 entries across 5 versions & 2 rubygems