rubyx/test/vool/lambdas/test_if_condition.rb
Torsten Rüger 4bf23defc8 fix many tests with preloading
preloading, something akin to builtin, loads some very small predefined (macro) methods for the tests to work (ie call)
2019-09-12 22:27:26 +03:00

29 lines
807 B
Ruby

require_relative "helper"
module VoolBlocks
class TestConditionIfMom < MiniTest::Test
include VoolCompile
def setup
@ins = compile_main_block( "if(5.div4) ; @a = 6 ; else; @a = 5 ; end" , "local=5", "Integer.div4")
end
def est_condition
assert_equal TruthCheck , @ins.next(3).class
end
def est_condition_is_slot
assert_equal SlotDefinition , @ins.next(3).condition.class , @ins
end
def est_simple_call
assert_equal SimpleCall , @ins.next(2).class
assert_equal :div4 , @ins.next(2).method.name
end
def test_array
check_array [MessageSetup, ArgumentTransfer, SimpleCall, TruthCheck, Label ,
SlotLoad, Jump, Label, SlotLoad, Label ,
Label, ReturnSequence, Label] , @ins
end
end
end