~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/scripts/tests/test_sync_source.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-30 10:09:30 UTC
  • mfrom: (14606.2.8 apocalibrarian)
  • Revision ID: launchpad@pqm.canonical.com-20111230100930-kp3e0l6wakissewm
[r=wgrant][no-qa] Move canonical.librarian to
        lp.services.librarian(server).

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):