rubyx/test/vool/blocks/test_if_condition.rb

31 lines
885 B
Ruby
Raw Normal View History

2018-07-18 12:57:38 +02:00
require_relative "helper"
module VoolBlocks
2018-07-21 11:51:20 +02:00
class TestConditionIfMom < MiniTest::Test
2019-08-13 10:14:36 +02:00
include VoolCompile
2018-07-18 12:57:38 +02:00
def setup
2019-02-08 22:03:23 +01:00
Parfait.boot!(Parfait.default_test_options)
2019-08-13 10:14:36 +02:00
Mom::Builtin.boot_functions
2018-07-18 12:57:38 +02:00
@ins = compile_first_block( "if(5.div4) ; @a = 6 ; else; @a = 5 ; end")
end
2019-08-13 10:14:36 +02:00
def test_condition
2018-07-18 12:57:38 +02:00
assert_equal TruthCheck , @ins.next(4).class
end
2019-08-13 10:14:36 +02:00
def test_condition_is_slot
2018-07-18 12:57:38 +02:00
assert_equal SlotDefinition , @ins.next(4).condition.class , @ins
end
2019-08-13 10:14:36 +02:00
def test_hoisted_dynamic_call
2018-07-18 12:57:38 +02:00
assert_equal SimpleCall , @ins.next(2).class
assert_equal :div4 , @ins.next(2).method.name
end
2019-08-13 10:14:36 +02:00
def test_array
2018-07-18 12:57:38 +02:00
check_array [MessageSetup, ArgumentTransfer, SimpleCall, SlotLoad, TruthCheck, Label ,
SlotLoad, Jump, Label, SlotLoad, Label,
Label, ReturnSequence, Label] , @ins
2018-07-18 12:57:38 +02:00
end
end
end