rubyx/test/parfait/test_layout.rb
2015-11-07 19:38:52 +02:00

24 lines
320 B
Ruby

require_relative 'helper'
class TestLayoutRT < MiniTest::Test
include RuntimeTests
def test_main
@string_input = "return 1"
check
end
def test_get_layout
@string_input = "return get_layout()"
check
end
def test_get_class
@string_input = "return get_class()"
check
end
end