~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/librarianserver/testing/tests/test_server_fixture.py

  • Committer: William Grant
  • Date: 2011-12-30 01:48:17 UTC
  • mto: (14606.3.6 apocaremains)
  • mto: This revision was merged to the branch mainline in revision 14608.
  • Revision ID: william.grant@canonical.com-20111230014817-7qmddxz1x941socp
Move the rest of canonical.librarian to lp.services.librarianserver.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
__metaclass__ = type
9
9
 
10
10
import os
11
 
from urllib import urlopen
12
11
import socket
13
12
from textwrap import dedent
 
13
from urllib import urlopen
14
14
 
15
15
from testtools.content import Content
16
16
from testtools.content_type import UTF8_TEXT
17
17
 
18
18
from lp.services.config import config
19
19
from lp.services.config.fixture import ConfigFixture
20
 
from canonical.librarian.testing.server import LibrarianServerFixture
 
20
from lp.services.librarianserver.testing.server import LibrarianServerFixture
 
21
from lp.testing import TestCase
 
22
from lp.testing.layers import (
 
23
    BaseLayer,
 
24
    DatabaseLayer,
 
25
    )
21
26
from lp.testing.tests.test_layers_functional import (
22
27
    BaseLayerIsolator,
23
28
    LayerFixture,
24
29
    )
25
 
from lp.testing.layers import BaseLayer, DatabaseLayer
26
 
from lp.testing import TestCase
27
30
 
28
31
 
29
32
class TestLibrarianServerFixture(TestCase):