Sha256: 1ad166e54c66da8f3595ac1a584da6eea68c7b453e532275bec512784f4be947
Contents?: true
Size: 1.45 KB
Versions: 5
Compression:
Stored size: 1.45 KB
Contents
require 'spec_helper' require 'dentaku/ast/arithmetic' require 'dentaku/token' describe Dentaku::AST::Addition do let(:five) { Dentaku::AST::Numeric.new Dentaku::Token.new(:numeric, 5) } let(:six) { Dentaku::AST::Numeric.new Dentaku::Token.new(:numeric, 6) } let(:t) { Dentaku::AST::Numeric.new Dentaku::Token.new(:logical, true) } it 'performs addition' do node = described_class.new(five, six) expect(node.value).to eq 11 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 it 'allows operands that respond to addition' do # Sample struct that has a custom definition for addition Operand = Struct.new(:value) do def +(other) case other when Operand value + other.value when Numeric value + other end end end operand_five = Dentaku::AST::Numeric.new Dentaku::Token.new(:numeric, Operand.new(5)) operand_six = Dentaku::AST::Numeric.new Dentaku::Token.new(:numeric, Operand.new(6)) expect { described_class.new(operand_five, operand_six) }.not_to raise_error expect { described_class.new(operand_five, six) }.not_to raise_error end end
Version data entries
5 entries across 5 versions & 1 rubygems