rubyx/test/risc/test_callable_compiler.rb

38 lines
814 B
Ruby
Raw Normal View History

2019-08-08 11:19:27 +02:00
require_relative "helper"
module Risc
class FakeCallable
end
class FakeCallableCompiler < CallableCompiler
def initialize(a,b,c)
super(a,b,c)
end
def source_name
"luke"
end
end
class TestCallableCompiler < MiniTest::Test
def setup
Parfait.boot!({})
label = Risc.label("hi","ho")
@compiler = FakeCallableCompiler.new(FakeCallable.new , [] , label)
end
def test_ok
assert @compiler
end
def test_current
assert @compiler.current
end
def test_current_label
assert_equal Label , @compiler.current.class
assert_equal "ho" , @compiler.current.name
end
def test_mom
assert @compiler.risc_instructions
end
def test_const
assert_equal Array , @compiler.constants.class
end
end
end