Sha256: 0af93a522fb50c7833137aa227f230b7edb53599ac4cba32dda04f268f42ac70

Contents?: true

Size: 842 Bytes

Versions: 19

Compression:

Stored size: 842 Bytes

Contents

#!/usr/bin/env ruby

require File.dirname(__FILE__) + '/../../../spec_helper'

describe Puppet::Parser::AST::Not do
  before :each do
    @scope = Puppet::Parser::Scope.new
    @true_ast = Puppet::Parser::AST::Boolean.new( :value => true)
    @false_ast = Puppet::Parser::AST::Boolean.new( :value => false)
  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
    operator = Puppet::Parser::AST::Not.new :value => @false_ast
    operator.evaluate(@scope).should == true
  end

  it "should return false for ! true" do
    operator = Puppet::Parser::AST::Not.new :value => @true_ast
    operator.evaluate(@scope).should == false
  end

end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
puppet-2.6.18 spec/unit/parser/ast/not_spec.rb
puppet-2.6.17 spec/unit/parser/ast/not_spec.rb
puppet-2.6.16 spec/unit/parser/ast/not_spec.rb
puppet-2.6.15 spec/unit/parser/ast/not_spec.rb
puppet-2.6.14 spec/unit/parser/ast/not_spec.rb
puppet-2.6.13 spec/unit/parser/ast/not_spec.rb
puppet-2.6.12 spec/unit/parser/ast/not_spec.rb
puppet-2.6.11 spec/unit/parser/ast/not_spec.rb
puppet-2.6.10 spec/unit/parser/ast/not_spec.rb
puppet-2.6.9 spec/unit/parser/ast/not_spec.rb
puppet-2.6.8 spec/unit/parser/ast/not_spec.rb
puppet-2.6.7 spec/unit/parser/ast/not_spec.rb
puppet-2.6.6 spec/unit/parser/ast/not_spec.rb
puppet-2.6.5 spec/unit/parser/ast/not_spec.rb
puppet-2.6.4 spec/unit/parser/ast/not_spec.rb
puppet-2.6.3 spec/unit/parser/ast/not_spec.rb
puppet-2.6.2 spec/unit/parser/ast/not_spec.rb
puppet-2.6.1 spec/unit/parser/ast/not_spec.rb
puppet-2.6.0 spec/unit/parser/ast/not_spec.rb