Mercurial > hg > autobot
changeset 28:5ce65c535472
add a docstring and other stubs to projects
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 07 Jan 2011 18:47:05 -0800 |
parents | 555fd1ba838d |
children | 0f3737cfa0fc |
files | autobot/projects/__init__.py |
diffstat | 1 files changed, 15 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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()}