X-Git-Url: http://nitlanguage.org diff --git a/src/nitunit.nit b/src/nitunit.nit index fe8fb7b..125c514 100644 --- a/src/nitunit.nit +++ b/src/nitunit.nit @@ -84,19 +84,23 @@ for a in args do end # Try to load the file as a markdown document var mdoc = modelbuilder.load_markdown(a) - page.add modelbuilder.test_mdoc(mdoc) + var ts = modelbuilder.test_mdoc(mdoc) + if not ts.children.is_empty then page.add ts end for a in module_files do var g = modelbuilder.identify_group(a) if g == null then continue - page.add modelbuilder.test_group(g) + var ts = modelbuilder.test_group(g) + if not ts.children.is_empty then page.add ts end for m in mmodules do - page.add modelbuilder.test_markdown(m) - var ts = modelbuilder.test_unit(m) - if ts != null then page.add ts + var ts + ts = modelbuilder.test_markdown(m) + if not ts.children.is_empty then page.add ts + ts = modelbuilder.test_unit(m) + if ts != null and not ts.children.is_empty then page.add ts end var file = toolcontext.opt_output.value