view autobot/projects/__init__.py @ 32:5b08b98897c6

autobot, test thyself
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 07 Jan 2011 18:50:31 -0800
parents 7a33d84b38e5
children 206467b6f61f
line wrap: on
line source

"""
projects that need some testing:

* logparser [IN FLIGHT]
* mozmill   [IN FLIGHT]
* devicemanager  [TODO]
* profilemanager [TODO]
* firebug        [TODO]
* jetpack thing  [TODO]
* autobot        [TODO]
"""

import os

from logparser import TestLogParserFactory
from mozmill import TestMozmillFactory
# TODO: import these automagically:
# here = os.path.dirname(os.path.abspath(__file__))

# available factories
factories = {'logparser': TestLogParserFactory(),
             'mozmill':   TestMozmillFactory() }