Fix aruba 0.6.2 API usage

Use `check_file_content` instead of `check_exact_file_content` which
has been deprecated.
This commit is contained in:
Thibault Jouan 2015-02-03 04:02:10 +00:00
parent 7e3d753d5c
commit 2f34414bf8

View File

@ -19,7 +19,7 @@ Then /^the remote file "([^"]+)" must contain "([^"]+)"$/ do |path, content|
end
Then /^the remote file "([^"]+)" must contain exactly "([^"]+)"$/ do |path, content|
check_exact_file_content path, content
check_file_content path, content
end
Then /^the remote file "([^"]+)" must match \/([^\/]+)\/$/ do |path, pattern|