~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/tests/test_acceptance.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-30 11:28:39 UTC
  • mfrom: (14606.2.10 apocatest)
  • Revision ID: launchpad@pqm.canonical.com-20111230112839-iogfa6k9x40ymp6c
[r=wgrant][no-qa] Merge canonical.testing into lp.services.testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
from bzrlib.workingtree import WorkingTree
26
26
from zope.component import getUtility
27
27
 
28
 
from lp.services.config import config
29
 
from lp.testing.layers import ZopelessAppServerLayer
30
 
from canonical.testing.profiled import profiled
31
28
from lp.code.bzr import (
32
29
    BranchFormat,
33
30
    ControlFormat,
56
53
from lp.codehosting.vfs import branch_id_to_path
57
54
from lp.registry.model.person import Person
58
55
from lp.registry.model.product import Product
 
56
from lp.services.config import config
 
57
from lp.services.testing.profiled import profiled
59
58
from lp.testing import TestCaseWithFactory
 
59
from lp.testing.layers import ZopelessAppServerLayer
60
60
 
61
61
 
62
62
class ForkingServerForTests(object):