# HG changeset patch # User Jeff Hammel # Date 1294454825 28800 # Node ID 5ce65c5354726247579f5864c5b6be6f3d3894d8 # Parent 555fd1ba838df32b6bb5d029242b8b6e8d6a9de7 add a docstring and other stubs to projects diff -r 555fd1ba838d -r 5ce65c535472 autobot/projects/__init__.py --- a/autobot/projects/__init__.py Fri Jan 07 18:45:00 2011 -0800 +++ b/autobot/projects/__init__.py Fri Jan 07 18:47:05 2011 -0800 @@ -1,4 +1,18 @@ +""" +projects that need some testing: + +* logparser +* mozmill +* jetpack thing +* devicemanager +* profilemanager +* firebug +""" + +import os + from logparser import TestLogParserFactory -# TODO: import these automagically +# TODO: import these automagically: +# here = os.path.dirname(os.path.abspath(__file__)) factories = {'logparser': TestLogParserFactory()}