~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/tests/test_duplicate_handling.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:
162
162
        # and one common target, i.e., N+3 targets for N duplicates.
163
163
        self.assertEqual(5, self.moveDuplicates(2, with_random_target=True))
164
164
        self.assertEqual(7, self.moveDuplicates(4, with_random_target=True))
165
 
 
166
 
 
167
 
def test_suite():
168
 
    return unittest.TestLoader().loadTestsFromName(__name__)