rpl.rb/spec/language_program_spec.rb
2022-02-09 13:38:32 +01:00

23 lines
629 B
Ruby

# frozen_string_literal: true
require 'test/unit'
require_relative '../interpreter'
class TestLanguageProgram < Test::Unit::TestCase
def test_eval
interpreter = Rpl::Interpreter.new
interpreter.run '« 2 dup * dup » eval'
assert_equal [{ value: 4, type: :numeric, base: 10 },
{ value: 4, type: :numeric, base: 10 }],
interpreter.stack
interpreter = Rpl::Interpreter.new
interpreter.run '4 \'dup\' eval'
assert_equal [{ value: 4, type: :numeric, base: 10 },
{ value: 4, type: :numeric, base: 10 }],
interpreter.stack
end
end