annotate autobot/projects/__init__.py @ 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 0f3737cfa0fc
children 5b08b98897c6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28
5ce65c535472 add a docstring and other stubs to projects
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
1 """
5ce65c535472 add a docstring and other stubs to projects
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
2 projects that need some testing:
5ce65c535472 add a docstring and other stubs to projects
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
3
29
0f3737cfa0fc format docstring
Jeff Hammel <jhammel@mozilla.com>
parents: 28
diff changeset
4 * logparser [IN FLIGHT]
0f3737cfa0fc format docstring
Jeff Hammel <jhammel@mozilla.com>
parents: 28
diff changeset
5 * mozmill [IN FLIGHT]
0f3737cfa0fc format docstring
Jeff Hammel <jhammel@mozilla.com>
parents: 28
diff changeset
6 * devicemanager [TODO]
0f3737cfa0fc format docstring
Jeff Hammel <jhammel@mozilla.com>
parents: 28
diff changeset
7 * profilemanager [TODO]
0f3737cfa0fc format docstring
Jeff Hammel <jhammel@mozilla.com>
parents: 28
diff changeset
8 * firebug [TODO]
0f3737cfa0fc format docstring
Jeff Hammel <jhammel@mozilla.com>
parents: 28
diff changeset
9 * jetpack thing [TODO]
28
5ce65c535472 add a docstring and other stubs to projects
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
10 """
5ce65c535472 add a docstring and other stubs to projects
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
11
5ce65c535472 add a docstring and other stubs to projects
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
12 import os
5ce65c535472 add a docstring and other stubs to projects
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
13
10
9bda5ada5dca start on a dict of projects
Jeff Hammel <jhammel@mozilla.com>
parents: 0
diff changeset
14 from logparser import TestLogParserFactory
31
7a33d84b38e5 add mozmill to the dictionary of factories
Jeff Hammel <jhammel@mozilla.com>
parents: 29
diff changeset
15 from mozmill import TestMozmillFactory
28
5ce65c535472 add a docstring and other stubs to projects
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
16 # TODO: import these automagically:
5ce65c535472 add a docstring and other stubs to projects
Jeff Hammel <jhammel@mozilla.com>
parents: 19
diff changeset
17 # here = os.path.dirname(os.path.abspath(__file__))
10
9bda5ada5dca start on a dict of projects
Jeff Hammel <jhammel@mozilla.com>
parents: 0
diff changeset
18
31
7a33d84b38e5 add mozmill to the dictionary of factories
Jeff Hammel <jhammel@mozilla.com>
parents: 29
diff changeset
19 # available factories
7a33d84b38e5 add mozmill to the dictionary of factories
Jeff Hammel <jhammel@mozilla.com>
parents: 29
diff changeset
20 factories = {'logparser': TestLogParserFactory(),
7a33d84b38e5 add mozmill to the dictionary of factories
Jeff Hammel <jhammel@mozilla.com>
parents: 29
diff changeset
21 'mozmill': TestMozmillFactory() }