generalize assemblers to use callables

not just methods,  they are almost the same anyway
This commit is contained in:
Torsten Ruger
2018-07-30 10:23:42 +03:00
parent 4055709529
commit 285a88b59f
7 changed files with 16 additions and 16 deletions

View File

@ -14,7 +14,7 @@ module RubyX
assert_equal Risc::Linker , @linker.class
end
def test_method
assert_equal :main , @linker.assemblers.first.method.name
assert_equal :main , @linker.assemblers.first.callable.name
end
end
end