diff options
author | tphoney <tp@puppet.com> | 2016-08-08 17:35:13 +0100 |
---|---|---|
committer | tphoney <tp@puppet.com> | 2016-08-08 17:46:11 +0100 |
commit | 22fbe723acd22ae3491c41beeacbc76853c6820e (patch) | |
tree | c91448e5face966d92d713b537316adcd08fbac3 /spec/fixtures/modules/test/manifests | |
parent | e39fe01ea01719b97110341cacc4b4e2784a7d1a (diff) |
(modules-3532) deprecate string type checks
Diffstat (limited to 'spec/fixtures/modules/test/manifests')
-rw-r--r-- | spec/fixtures/modules/test/manifests/absolute_path.pp | 6 | ||||
-rw-r--r-- | spec/fixtures/modules/test/manifests/array.pp | 8 | ||||
-rw-r--r-- | spec/fixtures/modules/test/manifests/bool.pp | 8 | ||||
-rw-r--r-- | spec/fixtures/modules/test/manifests/string.pp | 8 |
4 files changed, 30 insertions, 0 deletions
diff --git a/spec/fixtures/modules/test/manifests/absolute_path.pp b/spec/fixtures/modules/test/manifests/absolute_path.pp new file mode 100644 index 0000000..d77f6bd --- /dev/null +++ b/spec/fixtures/modules/test/manifests/absolute_path.pp @@ -0,0 +1,6 @@ +# Class to test the Stdlib::Compat::Absolute_path type alias +class test::absolute_path( + Stdlib::Compat::Absolute_path $value, + ) { + notice("Success") +} diff --git a/spec/fixtures/modules/test/manifests/array.pp b/spec/fixtures/modules/test/manifests/array.pp new file mode 100644 index 0000000..84b6a5b --- /dev/null +++ b/spec/fixtures/modules/test/manifests/array.pp @@ -0,0 +1,8 @@ +# Class to test the Stdlib::Compat::Array type alias +class test::array( + Stdlib::Compat::Array $value, + ) { + + notice("Success") + +} diff --git a/spec/fixtures/modules/test/manifests/bool.pp b/spec/fixtures/modules/test/manifests/bool.pp new file mode 100644 index 0000000..ab5b5ea --- /dev/null +++ b/spec/fixtures/modules/test/manifests/bool.pp @@ -0,0 +1,8 @@ +# Class to test the Stdlib::Compat::Bool type alias +class test::bool( + Stdlib::Compat::Bool $value, + ) { + + notice("Success") + +} 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") + +} |