rubyx/test/soml/parfait/test_layout.rb
Torsten Ruger 7daaec6a0a unify fragment and parfait test code
so that we can test fragments remotely too
2015-11-18 13:04:57 +02:00

34 lines
505 B
Ruby

require_relative 'helper'
class TestLayoutRT < MiniTest::Test
include ParfaitTests
def test_main
@main = "return 1"
check_return 1
end
def test_get_layout
@main = "return get_layout()"
check_return_class Parfait::Layout
end
def test_get_class
@main = "return get_class()"
check_return_class Parfait::Class
end
def test_puts_class
@main = <<HERE
Class c = get_class()
Word w = c.get_name()
w.putstring()
HERE
@stdout = "Space"
check
end
end