summaryrefslogtreecommitdiff
path: root/tests/init.pp
diff options
context:
space:
mode:
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'],
+ }
}