rubyx/test/vool/class_send/test_harness.rb
Torsten Rüger a4b6f29834 Booting functions again and send test
both class and normal sending tests at vool / mom level
2019-08-12 11:57:32 +03:00

13 lines
182 B
Ruby

require_relative "helper"
module Vool
class ClassSendHarness < MiniTest::Test
include ClassHarness
def send_method
"Object.get_internal_word(0)"
end
end
end