rubyx/test/vool/to_mom/test_if_simple.rb

33 lines
847 B
Ruby
Raw Normal View History

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
def setup
Risc.machine.boot
2018-03-15 17:24:03 +01:00
@ins = compile_first_method( "if(@a) ; 5.mod4 ; else; 4.mod4 ; end")
2017-08-30 16:21:13 +02:00
end
def test_compiles_not_array
2018-03-15 17:24:03 +01:00
assert Array != @ins.class , @ins
end
2017-08-30 16:21:13 +02:00
def test_if_compiles_as_array
2018-03-15 17:24:03 +01:00
assert_equal Mom::IfStatement , @ins.class , @ins
2017-08-30 16:21:13 +02:00
end
def test_condition_compiles_to_check
2018-03-15 17:24:03 +01:00
assert_equal Mom::TruthCheck , @ins.condition.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-15 17:24:03 +01:00
assert_equal Mom::SlotDefinition , @ins.condition.condition.class , @ins
2017-08-30 16:21:13 +02:00
end
def test_nothing_hoisted
2018-03-15 17:24:03 +01:00
assert_nil @ins.hoisted , @ins
2017-08-30 16:21:13 +02:00
end
2018-03-15 16:21:46 +01:00
def test_array
2018-03-15 17:24:03 +01:00
check_array [SlotLoad,TruthCheck,Label,MessageSetup,ArgumentTransfer,SimpleCall,Label], @ins
2018-03-15 16:21:46 +01:00
end
2017-08-30 16:21:13 +02:00
end
end