The interesting code looks like this:
def suite():
suite = unittest.TestSuite()
suite = unittest.makeSuite(TestConf,'test')
return suite
if __name__ == "__main__":
import coverage
coverage.erase()
coverage.start()
from rhpl import Conf
testRunner = unittest.TextTestRunner(verbosity=2)
result = testRunner.run(suite())
coverage.stop()
coverage.the_coverage.report(Conf, show_missing=0 )
sys.exit(not result.wasSuccessful())
which outputs s.th. like this:
Ran 4 tests in 0.685sOK Name Stmts Exec Cover ------------------------------- rhpl.Conf 1287 387 30%
FOAF updates: Trust rankings are now exported, making the data available to other users and websites. An external FOAF URI has been added, allowing users to link to an additional FOAF file.
Keep up with the latest Advogato features by reading the Advogato status blog.
If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!