rubyx/test/melon/compiler/test_method_creation.rb
2017-01-12 20:38:04 +02:00

20 lines
392 B
Ruby

require_relative "helper"
module Melon
class TestMethod < MiniTest::Test
include CompilerHelper
def setup
Register.machine.boot
end
def test_creates_method_in_class
Compiler.compile in_Space("def meth; @ivar;end")
space = Parfait.object_space.get_class
method = space.get_method(:meth)
assert method , "No method created"
end
end
end