rubyx/test/vool/to_mom/test_condition_if.rb

31 lines
777 B
Ruby
Raw Normal View History

2017-08-30 21:27:12 +02:00
require_relative "helper"
module Vool
2017-08-30 21:54:03 +02:00
class TestConditionIfMom < MiniTest::Test
2017-08-30 21:27:12 +02:00
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 Array , @first.class , @stats
end
2017-08-30 21:54:03 +02:00
def test_if_compiles_as_array_2
assert_equal 5 , @first.length , @stats
2017-08-30 21:27:12 +02:00
end
2017-08-30 21:54:03 +02:00
def test_condition_compiles_to_slot
assert_equal Mom::SlotConstant , @first.first.class
2017-08-30 21:27:12 +02:00
end
2017-08-30 21:54:03 +02:00
def test_condition_compiles_to_check_second
assert_equal Mom::TruthCheck , @first[1].class
end
def test_condition_is_send
assert_equal Vool::LocalVariable , @first[1].condition.class
2017-08-30 21:27:12 +02:00
end
end
end