renaming to_mom tests and improve guard
This commit is contained in:
27
test/vool/to_mom/test_if_condition.rb
Normal file
27
test/vool/to_mom/test_if_condition.rb
Normal file
@ -0,0 +1,27 @@
|
||||
|
||||
require_relative "helper"
|
||||
|
||||
module Vool
|
||||
class TestConditionIfMom < MiniTest::Test
|
||||
include MomCompile
|
||||
|
||||
def setup
|
||||
Risc.machine.boot
|
||||
@stats = compile_first_method( "if(@a == 5) ; 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_slot
|
||||
assert_equal Mom::TruthCheck , @first.condition.class
|
||||
end
|
||||
def test_condition_is_send
|
||||
assert_equal Vool::LocalVariable , @first.condition.condition.class
|
||||
end
|
||||
def test_hoisetd
|
||||
assert_equal Mom::SlotConstant , @first.hoisted.class
|
||||
end
|
||||
end
|
||||
end
|
Reference in New Issue
Block a user