/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-02-25 09:21:19 UTC
  • mfrom: (3235.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080225092119-bk1won32t9nw4h6u
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