# HG changeset patch # User Jeff Hammel # Date 1294455156 28800 # Node ID cbeca1aea4063b9da8ffebf4db9b4b1e92a511b4 # Parent 5b08b98897c6f219cd3381ec2275448477ea9b2d stub out autobot testing itself diff -r 5b08b98897c6 -r cbeca1aea406 autobot/projects/autobot/__init__.py --- /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