changeset 27:555fd1ba838d

stub out mozmill testor
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 07 Jan 2011 18:45:00 -0800
parents fdddf883c19d
children 5ce65c535472
files autobot/projects/mozmill/__init__.py
diffstat 1 files changed, 17 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/autobot/projects/mozmill/__init__.py	Fri Jan 07 18:45:00 2011 -0800
@@ -0,0 +1,17 @@
+from autobot.process.factory import VirtualenvFactory
+
+class TestMozmillFactory(VirtualenvFactory):
+  """
+  factory to test Mozmill
+  http://github.com/mozautomation/mozmill
+  """
+  def __init__(self):
+
+    # setup the environment
+    VirtualenvFactory.__init__(self, name='logparser',
+                               git_sources=['http://github.com/mozautomation/mozmill'])
+
+    # install the python
+    # TODO: utilize PythonSourceFactory
+
+    # run the tests