Accept mode as argument in `mkdir' action

This commit is contained in:
Thibault Jouan
2014-04-25 00:28:20 +00:00
parent 5cb6296057
commit 94f6bbb4aa
6 changed files with 68 additions and 7 deletions

View File

@@ -22,9 +22,16 @@ Then /^the remote file "([^"]+)" must contain exactly "([^"]+)"$/ do |path, cont
check_exact_file_content path, content
end
Then /^the remote file "([^"]+)" must have (\d+) mode$/ do |path, mode|
def stat_mode(path)
in_current_dir do
puts path, ('%o' % [File::Stat.new(path).mode])[-4, 4], mode
expect(('%o' % [File::Stat.new(path).mode])[-4, 4]).to match mode
('%o' % [File::Stat.new(path).mode])[-4, 4]
end
end
Then /^the remote file "([^"]+)" must have (\d+) mode$/ do |path, mode|
expect(stat_mode path).to eq mode
end
Then /^the remote directory "([^"]+)" must have (\d+) mode$/ do |path, mode|
expect(stat_mode path).to eq mode
end