~bkerensa/ubuntu/raring/puppet/new-upstream-release

« back to all changes in this revision

Viewing changes to spec/unit/parser/ast/arithmetic_operator_spec.rb

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-07-25 01:00:37 UTC
  • mfrom: (1.1.24 upstream) (3.1.25 sid)
  • Revision ID: james.westby@ubuntu.com-20110725010037-875vuxs10eboqgw3
Tags: 2.7.1-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - debian/puppetmaster-passenger.postinst: Use cacrl instead of hostcrl to
    set the location of the CRL in apache2 configuration. Fix apache2
    configuration on upgrade as well (LP: #641001)
  - move all puppet dependencies to puppet-common since all the code
    actually located in puppet-common.
  - move libagueas from a recommend to a dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/env ruby
2
 
 
3
 
require File.dirname(__FILE__) + '/../../../spec_helper'
 
1
#!/usr/bin/env rspec
 
2
require 'spec_helper'
4
3
 
5
4
describe Puppet::Parser::AST::ArithmeticOperator do
6
5
 
60
59
    operator.evaluate(@scope).should == 4.33
61
60
  end
62
61
 
63
 
  it "should work for variables too" do
64
 
    @scope.expects(:lookupvar).with("one", false).returns(1)
65
 
    @scope.expects(:lookupvar).with("two", false).returns(2)
66
 
    one = ast::Variable.new( :value => "one" )
67
 
    two = ast::Variable.new( :value => "two" )
68
 
 
69
 
    operator = ast::ArithmeticOperator.new :lval => one, :operator => "+", :rval => two
70
 
    operator.evaluate(@scope).should == 3
71
 
  end
72
 
 
73
62
end