rubyx/test/soml/parfait/test_layout.rb

34 lines
505 B
Ruby
Raw Normal View History

require_relative 'helper'
2015-11-07 18:38:52 +01:00
class TestLayoutRT < MiniTest::Test
include ParfaitTests
def test_main
@main = "return 1"
2015-11-07 21:26:06 +01:00
check_return 1
end
def test_get_layout
@main = "return get_layout()"
2015-11-07 21:26:06 +01:00
check_return_class Parfait::Layout
end
2015-11-07 18:38:52 +01:00
def test_get_class
@main = "return get_class()"
check_return_class Parfait::Class
2015-11-07 18:38:52 +01:00
end
def test_puts_class
@main = <<HERE
Class c = get_class()
Word w = c.get_name()
w.putstring()
HERE
@stdout = "Space"
check
end
end