# HG changeset patch # User Jeff Hammel # Date 1294455007 28800 # Node ID 7a33d84b38e5c892d8d3c35c5ea30a142a0a70c7 # Parent 0926e5aa033921dc117c1ce18f1d8193bc1fc4ff add mozmill to the dictionary of factories diff -r 0926e5aa0339 -r 7a33d84b38e5 autobot/projects/__init__.py --- 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() }