~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/tests/test_branchcloud.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-22 04:46:24 UTC
  • mfrom: (14562.1.4 apocalypse)
  • Revision ID: launchpad@pqm.canonical.com-20111222044624-zzfwcfyel4n7bjpu
[r=wgrant][no-qa] Move some test helpers from canonical.launchpad to
        lp.*.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
import transaction
16
16
from zope.component import getUtility
17
17
 
18
 
from canonical.launchpad.testing.databasehelpers import (
19
 
    remove_all_sample_data_branches,
20
 
    )
21
18
from canonical.testing.layers import DatabaseFunctionalLayer
22
19
from lp.code.interfaces.branch import IBranchCloud
23
20
from lp.code.model.revision import RevisionCache
24
 
from lp.code.tests.helpers import make_project_branch_with_revisions
 
21
from lp.code.tests.helpers import (
 
22
    make_project_branch_with_revisions,
 
23
    remove_all_sample_data_branches,
 
24
    )
25
25
from lp.testing import (
26
26
    TestCaseWithFactory,
27
27
    time_counter,