renaming to_mom tests and improve guard

This commit is contained in:
Torsten Ruger
2017-09-04 21:00:29 +03:00
parent dab4e74659
commit 4f3a4387fc
3 changed files with 12 additions and 15 deletions

View File

@ -0,0 +1,27 @@
require_relative "helper"
module Vool
class TestSimpleIfMom < MiniTest::Test
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
end
def test_condition_compiles_to_check
assert_equal Mom::TruthCheck , @first.condition.class , @stats
end
def test_condition_is_instance
assert_equal Vool::InstanceVariable , @first.condition.condition.class , @stats
end
def test_nothing_hoisted
assert_nil @first.hoisted , @stats
end
end
end