commentify report_untested

original-commit-id: 86150b0f8a1cfac1b30521a9bae78d32bbdb29d2
This commit is contained in:
Bryan Bishop
2013-01-27 16:37:48 -06:00
parent a0cc3cac6e
commit 33be75263a

View File

@@ -986,6 +986,11 @@ def find_untested_methods():
return untested
def report_untested():
"""
This reports about untested functions in the global namespace. This was
originally in the crystal module, where it would list out the majority of
the functions. Maybe it should be moved back.
"""
untested = find_untested_methods()
output = "NOT TESTED: ["
first = True