rubyx/test/sol/test_if_simple.rb

31 lines
826 B
Ruby
Raw Normal View History

2017-08-30 17:21:13 +03:00
require_relative "helper"
module Sol
class TestSimpleIfSlotMachine < MiniTest::Test
include SolCompile
2017-08-30 17:21:13 +03:00
def setup
@compiler = compile_main( "if(@a) ; @a = 5 ; else; @a = 6 ; end;return")
@ins = @compiler.slot_instructions.next
2017-08-30 17:21:13 +03:00
end
def test_condition_compiles_to_check
2018-03-16 19:05:22 +05:30
assert_equal TruthCheck , @ins.class , @ins
2017-08-30 17:21:13 +03:00
end
2017-09-04 21:31:49 +03:00
def test_condition_is_slot
assert_equal SlottedMessage , @ins.condition.class , @ins
2018-03-16 19:05:22 +05:30
end
def test_label_after_check
assert_equal Label , @ins.next.class , @ins
2017-08-30 17:21:13 +03:00
end
2018-03-16 19:05:22 +05:30
def test_label_last
assert_equal Label , @ins.last.class , @ins
2017-08-30 17:21:13 +03:00
end
2018-03-15 20:51:46 +05:30
def test_array
check_array [TruthCheck, Label, SlotLoad, Jump, Label ,
SlotLoad, Label, SlotLoad, ReturnJump,Label, ReturnSequence, Label], @ins
2018-03-15 20:51:46 +05:30
end
2017-08-30 17:21:13 +03:00
end
end