~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Curtis Hovey
  • Date: 2011-12-24 17:49:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14602.
  • Revision ID: curtis.hovey@canonical.com-20111224174930-xk1d5cvhyxq46ctf
Moved webapp to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    Interface,
33
33
    )
34
34
 
35
 
from canonical.launchpad.webapp.interfaces import IFinishReadOnlyRequestEvent
36
 
from canonical.launchpad.webapp.publication import LaunchpadBrowserPublication
37
 
from canonical.launchpad.webapp.servers import (
 
35
from lp.services.webapp.interfaces import IFinishReadOnlyRequestEvent
 
36
from lp.services.webapp.publication import LaunchpadBrowserPublication
 
37
from lp.services.webapp.servers import (
38
38
    ApplicationServerSettingRequestFactory,
39
39
    LaunchpadBrowserRequest,
40
40
    LaunchpadTestRequest,
635
635
def test_suite():
636
636
    suite = unittest.TestSuite()
637
637
    suite.addTest(DocTestSuite(
638
 
        'canonical.launchpad.webapp.servers',
 
638
        'lp.services.webapp.servers',
639
639
        optionflags=NORMALIZE_WHITESPACE | ELLIPSIS))
640
640
    suite.addTest(unittest.TestLoader().loadTestsFromName(__name__))
641
641
    return suite