get layout test

start of copying the ruby parfait tests
lots can be done with string output and return value
This commit is contained in:
Torsten Ruger 2015-11-07 17:39:17 +02:00
parent 50b03a5e94
commit 8aabff6b37

View File

@ -0,0 +1,18 @@
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