summaryrefslogtreecommitdiff
path: root/spec/functions/type_spec.rb
diff options
context:
space:
mode:
authorHunter Haugen <hunter@puppetlabs.com>2014-12-15 16:11:10 -0800
committerHunter Haugen <hunter@puppetlabs.com>2015-01-07 16:40:06 -0800
commit7c8ae311cade65e84df1054779a039ff906e630c (patch)
treed1d0bec00d7b74f433d72c292bee0f97ac0f3464 /spec/functions/type_spec.rb
parent4700f16e8273b3d4a3b1e22b09c44d7ac9f74f3e (diff)
(MODULES-1473) Deprecate type() function for new parser
The `type()` function will cease to work on the new parser because 'type' is a reserved keyword. The `type3x()` function may be used to continue similar functionality, but will be deprecated in favor of the built-in typing system. The `type_of()` function has been included to introspect types in the 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