rubyx/test/vool/to_mom/test_if_simple.rb

28 lines
694 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
@stats = compile_first_method( "if(@a) ; 5.mod4 ; else; 4.mod4 ; end")
@first = @stats.first
end
def test_if_compiles_as_array
assert_equal Mom::IfStatement , @first.class , @stats
2017-08-30 16:21:13 +02:00
end
def test_condition_compiles_to_check
assert_equal Mom::TruthCheck , @first.condition.class , @stats
2017-08-30 16:21:13 +02:00
end
def test_condition_is_instance
assert_equal Vool::InstanceVariable , @first.condition.condition.class , @stats
2017-08-30 16:21:13 +02:00
end
def test_nothing_hoisted
assert_nil @first.hoisted , @stats
2017-08-30 16:21:13 +02:00
end
end
end