~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/webapp/tests/test_authentication.py

  • Committer: William Grant
  • Date: 2012-01-01 02:58:52 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101025852-p6ouypk9mzb5usn8
format-imports on lib/. So many imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
from zope.app.security.principalregistry import UnauthenticatedPrincipal
13
13
 
14
14
from lp.services.config import config
15
 
from lp.testing import login
16
15
from lp.services.webapp.authentication import LaunchpadPrincipal
17
16
from lp.services.webapp.login import logInPrincipal
18
17
from lp.services.webapp.publication import LaunchpadBrowserPublication
19
18
from lp.services.webapp.servers import LaunchpadTestRequest
 
19
from lp.testing import (
 
20
    login,
 
21
    TestCaseWithFactory,
 
22
    )
20
23
from lp.testing.layers import (
21
24
    DatabaseFunctionalLayer,
22
25
    LaunchpadFunctionalLayer,
23
26
    )
24
 
from lp.testing import TestCaseWithFactory
25
27
from lp.testing.systemdocs import (
26
28
    LayeredDocFileSuite,
27
29
    setUp,