diff options
Diffstat (limited to 'spec/fixtures/modules/test/manifests/string.pp')
-rw-r--r-- | spec/fixtures/modules/test/manifests/string.pp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/fixtures/modules/test/manifests/string.pp b/spec/fixtures/modules/test/manifests/string.pp new file mode 100644 index 0000000..6508c70 --- /dev/null +++ b/spec/fixtures/modules/test/manifests/string.pp @@ -0,0 +1,8 @@ +# Class to test the Stdlib::Compat::String type alias +class test::string( + Stdlib::Compat::String $value, + ) { + + notice("Success") + +} |