1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1discard """ output: '''true''' """ # Just check that we can parse 'somesql' and render it without crashes. import parsesql, streams, os var tree = parseSql(newFileStream(getAppDir() / "somesql.sql"), "somesql") discard renderSql(tree) echo "true"
discard """ output: '''true''' """ # Just check that we can parse 'somesql' and render it without crashes. import parsesql, streams, os var tree = parseSql(newFileStream(getAppDir() / "somesql.sql"), "somesql") discard renderSql(tree) echo "true"