~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/testing/layers.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:
133
133
    set_default_timeout_function,
134
134
    )
135
135
from canonical.librarian.testing.server import LibrarianServerFixture
136
 
from canonical.testing import reset_logging
 
136
from lp.testing import reset_logging
137
137
from canonical.testing.profiled import profiled
138
 
from canonical.testing.smtpd import SMTPController
 
138
from lp.testing.smtpd import SMTPController
139
139
from lp.services.googlesearch.tests.googleserviceharness import (
140
140
    GoogleServiceTestSetup,
141
141
    )
813
813
    def installMockDb(cls):
814
814
        assert cls.mockdb_mode is None, 'mock db already installed'
815
815
 
816
 
        from canonical.testing.mockdb import (
 
816
        from lp.testing.mockdb import (
817
817
                script_filename, ScriptRecorder, ScriptPlayer,
818
818
                )
819
819