comparison autobot/projects/profilemanager/__init__.py @ 60:33fd34a75990

give profilemanager a real docstring
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 10 Jan 2011 22:41:26 -0800
parents e66165f2f31b
children 7d0a4c2cd171
comparison
equal deleted inserted replaced
59:e66165f2f31b 60:33fd34a75990
1 from buildbot.process.factory import BuildFactory 1 from buildbot.process.factory import BuildFactory
2 from buildbot.steps.shell import ShellCommand 2 from buildbot.steps.shell import ShellCommand
3 3
4 class TestProfileManager(BuildFactory): 4 class TestProfileManager(BuildFactory):
5 """
6 Test the ProfileManager standalone XUL application:
7 http://hg.mozilla.org/automation/profilemanager/
8 """
9
5 10
6 def __init__(self): 11 def __init__(self):
7 12
8 # install m-c + profilemanager 13 # install m-c + profilemanager
9 self.addStep(ShellCommand(command=['wget', 'http://hg.mozilla.org/automation/profilemanager/raw-file/tip/INSTALL.py'])) 14 self.addStep(ShellCommand(command=['wget', 'http://hg.mozilla.org/automation/profilemanager/raw-file/tip/INSTALL.py']))