rpl.rb/spec/core_spec.rb
Gwenhael Le Moine 8c5657db42
big refactoring
2022-02-08 15:45:36 +01:00

27 lines
918 B
Ruby

# coding: utf-8
# frozen_string_literal: true
require 'test/unit'
require_relative '../lib/core'
class TestParser < Test::Unit::TestCase
def test_stack_extract
stack, args = Rpl::Lang.stack_extract [{ value: 1, type: :numeric },
{ value: 2, type: :numeric }],
[:any]
assert_equal [{ value: 1, type: :numeric }],
stack
assert_equal [{ value: 2, type: :numeric }],
args
stack, args = Rpl::Lang.stack_extract [{ value: 'test', type: :string },
{ value: 2, type: :numeric }],
[[:numeric], :any]
assert_equal [],
stack
assert_equal [{ value: 2, type: :numeric },
{ value: 'test', type: :string }],
args
end
end