diff options
author | Paula McMaw <paula@puppet.com> | 2017-07-14 11:37:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-14 11:37:32 +0100 |
commit | 741a740502a37852f58b31856f8f5c1efd9ae458 (patch) | |
tree | 069c400254276e50176e5b11140c77f831590879 /lib | |
parent | 54d4937c5b2d8918ee9f89f728c0c29e0d9e774f (diff) | |
parent | 33922a4ec7a8c204a17e0c3017eea21faa220f39 (diff) |
Merge pull request #793 from tphoney/FM-6239
(FM-6239) rewrite of test following std patterns
Diffstat (limited to 'lib')
-rw-r--r-- | lib/puppet/parser/functions/unique.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/unique.rb b/lib/puppet/parser/functions/unique.rb index b57431d..1e2a895 100644 --- a/lib/puppet/parser/functions/unique.rb +++ b/lib/puppet/parser/functions/unique.rb @@ -24,6 +24,10 @@ This returns: EOS ) do |arguments| + if Puppet::Util::Package.versioncmp(Puppet.version, '5.0.0') >= 0 + function_deprecation([:unique, 'This method is deprecated, please use the core puppet unique function. There is further documentation for the function in the release notes of Puppet 5.0.']) + end + raise(Puppet::ParseError, "unique(): Wrong number of arguments given (#{arguments.size} for 1)") if arguments.size < 1 value = arguments[0] |