~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/tests/test_lpserve.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:
102
102
        result = self.finish_lpserve_subprocess(process)
103
103
        self.assertFinishedCleanly(result)
104
104
        self.assertIsNot(None, error_utility.getLastOopsReport())
105
 
 
106
 
 
107
 
def test_suite():
108
 
    from bzrlib import tests
109
 
    from bzrlib.plugins import lpserve
110
 
 
111
 
    loader = tests.TestLoader()
112
 
    suite = loader.loadTestsFromName(__name__)
113
 
    suite = lpserve.load_tests(suite, lpserve, loader)
114
 
    return suite