summaryrefslogtreecommitdiff
path: root/spec/fixtures
diff options
context:
space:
mode:
authorDavid Schmitt <david.schmitt@puppet.com>2017-01-13 13:46:17 +0000
committerGitHub <noreply@github.com>2017-01-13 13:46:17 +0000
commit1b4fb4e641af758dceeb0a4854099e5460700d6f (patch)
treed96aa59e9f7a4b5e088a6a5f8f9db5ebd7d10200 /spec/fixtures
parentb65dd1f45d10e10e45455358aeabb29167990e2c (diff)
parent128d6fe56855ba37698f67314b991a2bfdb7af37 (diff)
Merge pull request #708 from HelenCampbell/hashcompat
Addition of compat hash type for deprecation
Diffstat (limited to 'spec/fixtures')
-rw-r--r--spec/fixtures/test/manifests/hash.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/fixtures/test/manifests/hash.pp b/spec/fixtures/test/manifests/hash.pp
new file mode 100644
index 0000000..c243570
--- /dev/null
+++ b/spec/fixtures/test/manifests/hash.pp
@@ -0,0 +1,8 @@
+# Class to test the Stdlib::Compat::Hash type alias
+class test::hash(
+ Stdlib::Compat::Hash $value,
+ ) {
+
+ notice("Success")
+
+}