Mercurial > hg > autobot
changeset 31:7a33d84b38e5
add mozmill to the dictionary of factories
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 07 Jan 2011 18:50:07 -0800 |
parents | 0926e5aa0339 |
children | 5b08b98897c6 |
files | autobot/projects/__init__.py |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/autobot/projects/__init__.py Fri Jan 07 18:48:57 2011 -0800 +++ b/autobot/projects/__init__.py Fri Jan 07 18:50:07 2011 -0800 @@ -12,7 +12,10 @@ import os from logparser import TestLogParserFactory +from mozmill import TestMozmillFactory # TODO: import these automagically: # here = os.path.dirname(os.path.abspath(__file__)) -factories = {'logparser': TestLogParserFactory()} +# available factories +factories = {'logparser': TestLogParserFactory(), + 'mozmill': TestMozmillFactory() }