Mercurial > hg > autobot
view autobot/projects/autobot/__init__.py @ 71:a1568668175c
make the autobot project possibly do something
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 11 Jan 2011 14:00:01 -0800 |
parents | cbeca1aea406 |
children | d94fbaac7c2c |
line wrap: on
line source
from autobot.process.factory import PythonSourceFactory class TestAutobotFactory(PythonSourceFactory): """ factory to test autobot """ def __init__(self): # setup the environment PythonSourceFactory.__init__(self, name='autobot', hg_sources=['http://k0s.org/mozilla/hg/autobot']) # run the tests # [TODO]