~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/tests/test_prf_log.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:
42
42
        parent1 = getLogger("foo")
43
43
        parent2 = getLogger("foo.bar")
44
44
        self.assertEquals(get_logger("test", parent2).name, "foo.bar.test")
45
 
 
46
 
 
47
 
def test_suite():
48
 
    return unittest.TestLoader().loadTestsFromName(__name__)