diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/init.pp | 8 |
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'], + } } |