~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/scripts/tests/test_sync_source.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:
19
19
import transaction
20
20
from zope.component import getUtility
21
21
 
22
 
from lp.services.config import config
23
 
from canonical.librarian.testing.server import fillLibrarianFile
24
 
from lp.testing.layers import (
25
 
    LaunchpadZopelessLayer,
26
 
    LibrarianLayer,
27
 
    )
28
22
from lp.archiveuploader.tagfiles import parse_tagfile
29
23
from lp.registry.interfaces.distribution import IDistributionSet
 
24
from lp.services.config import config
 
25
from lp.services.librarianserver.testing.server import fillLibrarianFile
30
26
from lp.services.log.logger import BufferLogger
31
27
from lp.soyuz.scripts.ftpmaster import (
32
28
    generate_changes,
37
33
    TestCase,
38
34
    TestCaseWithFactory,
39
35
    )
 
36
from lp.testing.layers import (
 
37
    LaunchpadZopelessLayer,
 
38
    LibrarianLayer,
 
39
    )
40
40
 
41
41
 
42
42
class TestSyncSource(TestCaseWithFactory):