~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-02-05 04:00:18 UTC
  • mfrom: (3211.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080205040018-f8a9czbkg30yhfh0
Extends the launchpad plugin's implementation of lp spec urls (Tim Penhey)

Show diffs side-by-side

added added

removed removed

Lines of Context:
176
176
    'bzrlib.plugins.launchpad.lp_indirect',
177
177
    'LaunchpadTransport')
178
178
 
179
 
register_lazy_transport(
180
 
    'lp://',
181
 
    'bzrlib.plugins.launchpad.lp_indirect',
182
 
    'LaunchpadTransport')
183
179
 
184
180
def test_suite():
185
181
    """Called by bzrlib to fetch tests for this plugin"""
186
182
    from unittest import TestSuite, TestLoader
187
183
    from bzrlib.plugins.launchpad import (
188
 
        test_register, test_lp_indirect, test_account)
 
184
        test_register, test_lp_indirect, test_lp_registration, test_account)
189
185
 
190
186
    loader = TestLoader()
191
187
    suite = TestSuite()
192
 
    for m in [test_register, test_lp_indirect, test_account]:
 
188
    for m in [
 
189
        test_account,
 
190
        test_register,
 
191
        test_lp_indirect,
 
192
        test_lp_registration,
 
193
        ]:
193
194
        suite.addTests(loader.loadTestsFromModule(m))
194
195
    return suite
195
196