~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/puller/tests/test_scheduler.py

  • Committer: Curtis Hovey
  • Date: 2011-12-28 17:03:06 UTC
  • mto: This revision was merged to the branch mainline in revision 14605.
  • Revision ID: curtis.hovey@canonical.com-20111228170306-n9fz94h85ckaoaf3
Separate test-authoring classes from test-running classes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
from canonical.config import config
32
32
from lp.services.webapp import errorlog
33
 
from canonical.testing import (
34
 
    reset_logging,
35
 
    ZopelessAppServerLayer,
36
 
    )
37
33
from lp.code.enums import BranchType
38
34
from lp.code.interfaces.branchlookup import IBranchLookup
39
35
from lp.code.interfaces.codehosting import LAUNCHPAD_SERVICES
48
44
    ProcessTestsMixin,
49
45
    suppress_stderr,
50
46
    )
51
 
from lp.testing import TestCase
 
47
from lp.testing import (
 
48
    reset_logging,
 
49
    TestCase,
 
50
    )
 
51
from lp.testing import ZopelessAppServerLayer
52
52
 
53
53
 
54
54
class FakeCodehostingEndpointProxy: