summaryrefslogtreecommitdiff
path: root/spec/functions/type_spec.rb
diff options
context:
space:
mode:
authorTravis Fields <cyberious@users.noreply.github.com>2015-01-08 08:57:30 -0800
committerTravis Fields <cyberious@users.noreply.github.com>2015-01-08 08:57:30 -0800
commit413dafbb524f65ab28366553814e1680aeaab930 (patch)
treed1d0bec00d7b74f433d72c292bee0f97ac0f3464 /spec/functions/type_spec.rb
parent4700f16e8273b3d4a3b1e22b09c44d7ac9f74f3e (diff)
parent7c8ae311cade65e84df1054779a039ff906e630c (diff)
downloadpuppet-stdlib-413dafbb524f65ab28366553814e1680aeaab930.tar.gz
puppet-stdlib-413dafbb524f65ab28366553814e1680aeaab930.tar.bz2
Merge pull request #382 from hunner/fix_type
(MODULES-1473) Deprecate type() function for new parser
Diffstat (limited to 'spec/functions/type_spec.rb')
-rwxr-xr-xspec/functions/type_spec.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/spec/functions/type_spec.rb b/spec/functions/type_spec.rb
index 9dfe9d7..b683fcf 100755
--- a/spec/functions/type_spec.rb
+++ b/spec/functions/type_spec.rb
@@ -7,8 +7,9 @@ describe "the type function" do
expect(Puppet::Parser::Functions.function("type")).to eq("function_type")
end
- it "should raise a ParseError if there is less than 1 arguments" do
- expect { scope.function_type([]) }.to( raise_error(Puppet::ParseError))
+ it "should give a deprecation warning when called" do
+ scope.expects(:warning).with("type() DEPRECATED: This function will cease to function on Puppet 4; please use type3x() before upgrading to puppet 4 for backwards-compatibility, or migrate to the new parser's typing system.")
+ scope.function_type(["aoeu"])
end
it "should return string when given a string" do