8aabff6b37
start of copying the ruby parfait tests lots can be done with string output and return value
19 lines
238 B
Ruby
19 lines
238 B
Ruby
require_relative 'helper'
|
|
|
|
class TestObject < MiniTest::Test
|
|
include RuntimeTests
|
|
|
|
def test_main
|
|
@string_input = "return 1"
|
|
check
|
|
end
|
|
|
|
def test_get_layout
|
|
@string_input = "return get_layout()"
|
|
check
|
|
end
|
|
|
|
|
|
|
|
end
|