rubyx/test/parfait/test_layout.rb
Torsten Ruger 8aabff6b37 get layout test
start of copying the ruby parfait tests
lots can be done with string output and return value
2015-11-07 17:39:17 +02:00

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