diff --git a/test/parfait/test_layout.rb b/test/parfait/test_layout.rb new file mode 100644 index 00000000..227e1a32 --- /dev/null +++ b/test/parfait/test_layout.rb @@ -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