summaryrefslogtreecommitdiff
path: root/tests/init.pp
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2011-06-16 16:23:24 -0700
committerJeff McCune <jeff@puppetlabs.com>2011-06-16 16:23:24 -0700
commit5a65579e95732443eacf4dee4221b5e0e384acea (patch)
treed3a38aeec29b97e35751af65742cdb7f37b35d39 /tests/init.pp
parentc71ac9338da509dabeccd18acfca19bd19c5695f (diff)
parent3d316d1060fb8f4b9a2d0497c938644975949175 (diff)
Merge branch 'ticket/master/1_should_allow_relationships'v0.0.3
* ticket/master/1_should_allow_relationships: Add Apache Version 2.0 LICENSE file Update Modulefile for move to Puppet Labs (#1) Add example test using relationships.
Diffstat (limited to 'tests/init.pp')
-rw-r--r--tests/init.pp8
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/init.pp b/tests/init.pp
index b918564..e6d9b53 100644
--- a/tests/init.pp
+++ b/tests/init.pp
@@ -1,5 +1,11 @@
node default {
- class { "ntp": }
+ notify { 'enduser-before': }
+ notify { 'enduser-after': }
+
+ class { 'ntp':
+ require => Notify['enduser-before'],
+ before => Notify['enduser-after'],
+ }
}