summaryrefslogtreecommitdiffstats
path: root/acceptance/tests/puppet_apply_a_file_should_create_a_file_and_report_the_md5.rb
diff options
context:
space:
mode:
Diffstat (limited to 'acceptance/tests/puppet_apply_a_file_should_create_a_file_and_report_the_md5.rb')
-rw-r--r--acceptance/tests/puppet_apply_a_file_should_create_a_file_and_report_the_md5.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/acceptance/tests/puppet_apply_a_file_should_create_a_file_and_report_the_md5.rb b/acceptance/tests/puppet_apply_a_file_should_create_a_file_and_report_the_md5.rb
index abb06fbaf..44338520a 100644
--- a/acceptance/tests/puppet_apply_a_file_should_create_a_file_and_report_the_md5.rb
+++ b/acceptance/tests/puppet_apply_a_file_should_create_a_file_and_report_the_md5.rb
@@ -6,10 +6,11 @@ manifest = "file{'#{file}': content => 'test'}"
step "clean up #{file} for testing"
on agents, "rm -f #{file}"
-step "run the manifest and verify MD5 was printed"
-apply_manifest_on(agents, manifest) do
- fail_test "didn't find the content MD5 on output" unless
- stdout.include? "defined content as '{md5}098f6bcd4621d373cade4e832627b4f6'"
+step "Run the manifest and verify MD5 was printed"
+agents.each do |host|
+ apply_manifest_on(host, manifest) do
+ assert_match(/defined content as '{md5}098f6bcd4621d373cade4e832627b4f6'/, stdout, "#{host}: didn't find the content MD5 on output")
+ end
end
step "clean up #{file} after testing"