~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/archivepublisher/tests/test_publisher.py

  • Committer: Julian Edwards
  • Date: 2009-04-28 12:59:43 UTC
  • mto: (8303.14.1 soyuz-reorg-apocalypse)
  • mto: This revision was merged to the branch mainline in revision 8408.
  • Revision ID: julian.edwards@canonical.com-20090428125943-d7ytx3wal72y0578
First stab at code-reorg.  Still got a discrepancy on stuff I assigned to registry but not migrated yet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
from canonical.config import config
24
24
from canonical.database.constants import UTC_NOW
25
25
from canonical.launchpad.ftests.keys_for_tests import gpgkeysdir
26
 
from canonical.launchpad.interfaces.archive import (
 
26
from lp.soyuz.interfaces.archive import (
27
27
    ArchivePurpose, IArchiveSet)
28
 
from canonical.launchpad.interfaces.binarypackagerelease import (
 
28
from lp.soyuz.interfaces.binarypackagerelease import (
29
29
    BinaryPackageFormat)
30
30
from lp.registry.interfaces.distribution import IDistributionSet
31
31
from lp.registry.interfaces.distroseries import DistroSeriesStatus
32
32
from canonical.launchpad.interfaces.gpghandler import IGPGHandler
33
33
from lp.registry.interfaces.person import IPersonSet
34
 
from canonical.launchpad.interfaces.publishing import (
 
34
from lp.soyuz.interfaces.publishing import (
35
35
    PackagePublishingPocket, PackagePublishingStatus)
36
36
from canonical.launchpad.interfaces.archivesigningkey import (
37
37
    IArchiveSigningKey)
38
38
from canonical.launchpad.testing import get_lsb_information
39
 
from canonical.launchpad.tests.test_publishing import TestNativePublishingBase
 
39
from lp.soyuz.tests.test_publishing import TestNativePublishingBase
40
40
from canonical.zeca.ftests.harness import ZecaTestSetup
41
41
 
42
42