~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/__init__.py

  • Committer: Martin Pool
  • Date: 2008-02-25 07:28:29 UTC
  • mfrom: (3221.6.2 1.2)
  • mto: This revision was merged to the branch mainline in revision 3236.
  • Revision ID: mbp@sourcefrog.net-20080225072829-3cmqkr9rf19mm0sg
Merge 1.2 branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
181
181
    """Called by bzrlib to fetch tests for this plugin"""
182
182
    from unittest import TestSuite, TestLoader
183
183
    from bzrlib.plugins.launchpad import (
184
 
        test_register, test_lp_indirect, test_lp_registration, test_account)
 
184
         test_account, test_lp_indirect, test_lp_service, test_register,
 
185
         )
185
186
 
186
187
    loader = TestLoader()
187
188
    suite = TestSuite()
188
 
    for m in [
 
189
    for module in [
189
190
        test_account,
190
191
        test_register,
191
192
        test_lp_indirect,
192
 
        test_lp_registration,
 
193
        test_lp_service,
193
194
        ]:
194
 
        suite.addTests(loader.loadTestsFromModule(m))
 
195
        suite.addTests(loader.loadTestsFromModule(module))
195
196
    return suite
196
197
 
197
198
_launchpad_help = """Integration with Launchpad.net