~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/tests/test_branchlookup.py

  • Committer: Steve Kowalik
  • Date: 2011-08-12 11:19:40 UTC
  • mto: This revision was merged to the branch mainline in revision 13686.
  • Revision ID: stevenk@ubuntu.com-20110812111940-ryishyoj8b82bc2x
Remove all of the test_suite garbage I can.

Show diffs side-by-side

added added

removed removed

Lines of Context:
708
708
        result = self.branch_lookup.getByLPPath(
709
709
            '%s/other/bits' % package.path)
710
710
        self.assertEqual((branch, u'other/bits'), result)
711
 
 
712
 
 
713
 
def test_suite():
714
 
    return unittest.TestLoader().loadTestsFromName(__name__)