~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/tests/test_bugtracker_components.py

  • Committer: Curtis Hovey
  • Date: 2011-06-02 21:19:01 UTC
  • mto: This revision was merged to the branch mainline in revision 13177.
  • Revision ID: curtis.hovey@canonical.com-20110602211901-q8hwmzsrnr4qh16y
RemoveĀ unneededĀ runner.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
__all__ = []
9
9
 
10
 
import unittest
11
10
import transaction
12
11
 
13
12
from canonical.launchpad.ftests import login_person
292
291
        component = ws_object(self.launchpad, db_comp)
293
292
        package = ws_object(self.launchpad, db_src_pkg)
294
293
        component.distro_source_package = package
295
 
 
296
 
 
297
 
def test_suite():
298
 
    suite = unittest.TestSuite()
299
 
    suite.addTest(unittest.TestLoader().loadTestsFromName(__name__))
300
 
 
301
 
    return suite