summaryrefslogtreecommitdiff
path: root/spec/functions/type_spec.rb
diff options
context:
space:
mode:
authorColleen Murphy <cmurphy@users.noreply.github.com>2015-01-13 17:43:19 -0800
committerColleen Murphy <cmurphy@users.noreply.github.com>2015-01-13 17:43:19 -0800
commit712a58a5ce1f8465710dacad49ca2e60c5d0150e (patch)
tree7e56b669bf51eb88ee01a5cbc1f84df5766ebf1c /spec/functions/type_spec.rb
parent80f09623b63cf6946b5913b629911e2c49b5d1dd (diff)
parentcfacdd543e942f7c5d94fd07f14c2f6d8128e83d (diff)
Merge pull request #397 from cyberious/4.6.x
4.6.x
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