2019-08-12 12:16:15 +02:00
|
|
|
require_relative "helper"
|
|
|
|
|
|
|
|
module Mom
|
|
|
|
module Builtin
|
|
|
|
class TestWordGetRisc < BootTest
|
|
|
|
def setup
|
|
|
|
super
|
2019-08-22 16:52:19 +02:00
|
|
|
@method = get_object_compiler(:get_internal_word)
|
2019-08-12 12:16:15 +02:00
|
|
|
end
|
|
|
|
def test_compile
|
|
|
|
assert_equal Risc::MethodCompiler , @method.to_risc.class
|
|
|
|
end
|
|
|
|
def test_risc_length
|
2019-08-22 16:52:19 +02:00
|
|
|
assert_equal 19 , @method.to_risc.risc_instructions.length
|
2019-08-12 12:16:15 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|