24 lines
320 B
Ruby
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
|