markdown2 :: TestFile :: render
# Render the test module as a Nit string fun render: String do var tpl = new Template tpl.add header for test_class in test_classes do tpl.add test_class.render end return tpl.write_to_string end