From 12544569fb1b8c27b3746ff4d9657735ba1b1b10 Mon Sep 17 00:00:00 2001 From: Jeff McCune Date: Thu, 16 Jun 2011 17:44:34 -0700 Subject: [PATCH] Update the module example test manifest This change provides a clear indication about how relationships are expected to be managed when the end user consumes the module. --- tests/init.pp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tests/init.pp b/tests/init.pp index 8be274b..4114e3b 100644 --- a/tests/init.pp +++ b/tests/init.pp @@ -1 +1,10 @@ -include java +node default { + + notify { "alpha": } -> + class { 'java': + distribution => 'jdk', + version => 'latest', + } -> + notify { "omega": } + +}