spec/unit/parser/ast/not.rb in puppet-0.24.9 vs spec/unit/parser/ast/not.rb in puppet-0.25.0
- old
+ new
@@ -10,10 +10,10 @@
end
it "should evaluate its child expression" do
val = stub "val"
val.expects(:safeevaluate).with(@scope)
-
+
operator = Puppet::Parser::AST::Not.new :value => val
operator.evaluate(@scope)
end
it "should return true for ! false" do