2017-08-30 16:21:13 +02:00
|
|
|
|
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Vool
|
2017-08-30 17:23:54 +02:00
|
|
|
class TestSimpleIfMom < MiniTest::Test
|
2017-08-30 16:21:13 +02:00
|
|
|
include MomCompile
|
2018-03-16 14:35:22 +01:00
|
|
|
include Mom
|
2017-08-30 16:21:13 +02:00
|
|
|
|
|
|
|
def setup
|
|
|
|
Risc.machine.boot
|
2018-03-21 11:41:57 +01:00
|
|
|
@ins = compile_first_method( "if(@a) ; @a = 5 ; else; @a = 6 ; end")
|
2017-08-30 16:21:13 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_condition_compiles_to_check
|
2018-03-16 14:35:22 +01:00
|
|
|
assert_equal TruthCheck , @ins.class , @ins
|
2017-08-30 16:21:13 +02:00
|
|
|
end
|
2017-09-04 20:31:49 +02:00
|
|
|
def test_condition_is_slot
|
2018-03-16 14:35:22 +01:00
|
|
|
assert_equal SlotDefinition , @ins.condition.class , @ins
|
|
|
|
end
|
|
|
|
def test_label_after_check
|
|
|
|
assert_equal Label , @ins.next.class , @ins
|
2017-08-30 16:21:13 +02:00
|
|
|
end
|
2018-03-16 14:35:22 +01:00
|
|
|
def test_label_last
|
|
|
|
assert_equal Label , @ins.last.class , @ins
|
2017-08-30 16:21:13 +02:00
|
|
|
end
|
2018-03-15 16:21:46 +01:00
|
|
|
def test_array
|
2018-03-21 11:41:57 +01:00
|
|
|
check_array [TruthCheck, Label, SlotLoad, Jump, Label, SlotLoad ,
|
|
|
|
Label] , @ins
|
2018-03-15 16:21:46 +01:00
|
|
|
end
|
2017-08-30 16:21:13 +02:00
|
|
|
end
|
|
|
|
end
|