Implement `file_replace_content' task action

This commit is contained in:
Thibault Jouan
2014-03-05 01:59:38 +00:00
parent a7f6d7034b
commit d22b023ff4
7 changed files with 116 additions and 3 deletions

View File

@@ -17,3 +17,7 @@ end
Then /^the remote file "([^"]+)" should contain "([^"]+)"/ do |path, content|
check_file_content path, content, true
end
Then /^the remote file "([^"]+)" should contain exactly "([^"]+)"/ do |path, content|
check_exact_file_content path, content
end