require 'spec_helper' require 'dentaku/ast/arithmetic' require 'dentaku/token' describe Dentaku::AST::Division do let(:five) { Dentaku::AST::Logical.new Dentaku::Token.new(:numeric, 5) } let(:six) { Dentaku::AST::Logical.new Dentaku::Token.new(:numeric, 6) } let(:t) { Dentaku::AST::Numeric.new Dentaku::Token.new(:logical, true) } it 'allows access to its sub-trees' do node = described_class.new(five, six) expect(node.left).to eq(five) expect(node.right).to eq(six) end it 'performs division' do node = described_class.new(five, six) expect(node.value.round(4)).to eq(0.8333) end it 'requires numeric operands' do expect { described_class.new(five, t) }.to raise_error(Dentaku::NodeError, /requires numeric operands/) expression = Dentaku::AST::Multiplication.new(five, five) group = Dentaku::AST::Grouping.new(expression) expect { described_class.new(group, five) }.not_to raise_error end end