summaryrefslogtreecommitdiffstats
path: root/acceptance/tests/puppet_apply_should_show_a_notice.rb
blob: 757d29bbf8c3513574598fd4bdb455390dcf0ee8 (plain)
1
2
3
4
5
6
7
test_name "puppet apply should show a notice"

agents.each do |host|
  apply_manifest_on(host, "notice 'Hello World'") do
    assert_match(/notice: .*: Hello World/, stdout, "#{host}: the notice didn't show")
  end
end