From 71edc84e954ffa180baa9b83a4e83e0eb345a133 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Wed, 12 Dec 2018 11:36:27 +0100 Subject: [PATCH] Fix module structure Fixes so that the top level structure of the modules conform to the puppet standard [1]. [1] https://puppet.com/docs/puppet/5.3/modules_fundamentals.html#module-structure Change-Id: I9de8cda7eec53ffe2b22611d4e8e504b4fa7b871 --- {tests => examples}/init.pp | 4 ++-- {tests => examples}/workflow.pp | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename {tests => examples}/init.pp (74%) rename {tests => examples}/workflow.pp (100%) diff --git a/tests/init.pp b/examples/init.pp similarity index 74% rename from tests/init.pp rename to examples/init.pp index 5050335..20360e3 100644 --- a/tests/init.pp +++ b/examples/init.pp @@ -1,4 +1,4 @@ -# The baseline for module testing used by Puppet Labs is that each manifest +# The baseline for module testing used by Puppet Inc. is that each manifest # should have a corresponding test manifest that declares that class or defined # type. # @@ -7,6 +7,6 @@ # environment (to compare the resulting system state to the desired state). # # Learn more about module testing here: -# https://puppet.com/docs/puppet/5.2/tests_smoke.html +# https://puppet.com/docs/puppet/latest/bgtm.html#testing-your-module # include ::mistral diff --git a/tests/workflow.pp b/examples/workflow.pp similarity index 100% rename from tests/workflow.pp rename to examples/workflow.pp