summaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorNick Lewis <nick@puppetlabs.com>2011-02-28 14:16:50 -0800
committerNick Lewis <nick@puppetlabs.com>2011-02-28 14:16:50 -0800
commit43c79b744d0af0c5a1221addc74cc36eb68071a6 (patch)
tree5c9cf559dbbec395cbba83ae54de65e97b8551c5 /spec
parent7cf291944ad28532ccf31393e36ecf4bcd805868 (diff)
parent2ecf91367c911a87dc5680108222dcc48ecca888 (diff)
downloadpuppet-43c79b744d0af0c5a1221addc74cc36eb68071a6.tar.gz
puppet-43c79b744d0af0c5a1221addc74cc36eb68071a6.tar.xz
puppet-43c79b744d0af0c5a1221addc74cc36eb68071a6.zip
Merge branch 'maint/2.6.next/revert-5935' into 2.6.next
Diffstat (limited to 'spec')
-rwxr-xr-xspec/integration/parser/parser_spec.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/integration/parser/parser_spec.rb b/spec/integration/parser/parser_spec.rb
index 000e68dd8..20d87c228 100755
--- a/spec/integration/parser/parser_spec.rb
+++ b/spec/integration/parser/parser_spec.rb
@@ -116,18 +116,5 @@ describe Puppet::Parser::Parser do
$out = $hash['a']['b']['c']
}.should parse_with { |v| v.value.is_a?(Puppet::Parser::AST::ASTHash) }
end
-
- it "should be able to pass numbers to functions" do
- %q{
- my_function(1)
- }.should parse_as(Puppet::Parser::AST::Function)
- end
-
- it "should be able to pass negative numbers to functions" do
- %q{
- my_function(-1)
- }.should parse_as(Puppet::Parser::AST::Function)
- end
-
end
end