view autobot/projects/autobot/__init__.py @ 33:cbeca1aea406

stub out autobot testing itself
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 07 Jan 2011 18:52:36 -0800
parents
children a1568668175c
line wrap: on
line source

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