/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: Ian Clatworthy
  • Date: 2008-02-05 02:28:04 UTC
  • mfrom: (3193.5.3 extending-lp-spec)
  • mto: This revision was merged to the branch mainline in revision 3212.
  • Revision ID: ian.clatworthy@internode.on.net-20080205022804-5j9sm73zd2j70fb9
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