# HG changeset patch # User Jeff Hammel # Date 1322610758 28800 # Node ID e4ba2231c36e36208b4a53a46dcba38ac56ac21a # Parent c989bbb323cde1a2ed07de19985536c054453944 add a stub for the mozbase project diff -r c989bbb323cd -r e4ba2231c36e autobot/projects/mozbase/__init__.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/autobot/projects/mozbase/__init__.py Tue Nov 29 15:52:38 2011 -0800 @@ -0,0 +1,21 @@ +from autobot.process.factory import SourceFactory +from buildbot.steps.shell import ShellCommand +from buildbot.steps.shell import WithProperties + +class TestMozbase(SourceFactory): + """ + Base utilties for mozilla test harnesses: + https://github.com/mozilla/mozbase + """ + + sources = {'hg': ['https://github.com/mozilla/mozbase'], + 'git': []} + + def __init__(self, platform=None): + SourceFactory.__init__(self, platform=platform) + + # checkout the repositories + self.checkout() + + # run the tests [TODO] +