rubyx/test/vool/test_if_no_else.rb

32 lines
837 B
Ruby
Raw Normal View History

2018-03-16 14:35:22 +01:00
require_relative "helper"
module Vool
class TestIfNoElse < MiniTest::Test
include VoolCompile
2018-03-16 14:35:22 +01:00
def setup
2019-02-08 22:03:23 +01:00
Parfait.boot!(Parfait.default_test_options)
@compiler = compile_first_method( "if(@a) ; @a = 5 ; end;return")
@ins = @compiler.mom_instructions.next
2018-03-16 14:35:22 +01:00
end
def test_condition_compiles_to_check
assert_equal TruthCheck , @ins.class , @ins
end
def test_condition_is_slot
assert_equal SlotDefinition , @ins.condition.class , @ins
end
def test_label_after_check
assert_equal Label , @ins.next.class , @ins
end
def test_label_last
assert_equal Label , @ins.last.class , @ins
end
def test_array
check_array [TruthCheck, Label, SlotLoad, Label, SlotLoad, ReturnJump,
Label ,ReturnSequence, Label], @ins
2018-03-16 14:35:22 +01:00
end
end
end