features/step_definitions/directory_navigation.rb in ftpd-0.17.0 vs features/step_definitions/directory_navigation.rb in ftpd-1.0.0

- old
+ new

@@ -16,11 +16,11 @@ When /^the client successfully cd's to "(.*?)"$/ do |path| client.chdir path end Then /^the current directory should be "(.*?)"$/ do |path| - client.pwd.should == path + expect(client.pwd).to eq path end Then /^the XPWD directory should be "(.*?)"$/ do |path| - client.xpwd.should == path + expect(client.xpwd).to eq path end