Mercurial > hg > autobot
changeset 33:cbeca1aea406
stub out autobot testing itself
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 07 Jan 2011 18:52:36 -0800 |
parents | 5b08b98897c6 |
children | 206467b6f61f |
files | autobot/projects/autobot/__init__.py |
diffstat | 1 files changed, 16 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/autobot/projects/autobot/__init__.py Fri Jan 07 18:52:36 2011 -0800 @@ -0,0 +1,16 @@ +from autobot.process.factory import VirtualenvFactory + +class TestAutobotFactory(VirtualenvFactory): + """ + factory to test autobot + """ + def __init__(self): + + # setup the environment + VirtualenvFactory.__init__(self, name='autobot', + hg_sources=['TODO']) + + # install the python + # TODO: utilize PythonSourceFactory + + # run the tests