~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/soyuz/adapters/tests/test_copypolicy.py

  • Committer: William Grant
  • Date: 2012-01-01 02:58:52 UTC
  • mto: This revision was merged to the branch mainline in revision 14614.
  • Revision ID: william.grant@canonical.com-20120101025852-p6ouypk9mzb5usn8
format-imports on lib/. So many imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright 2011 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
 
from lp.services.webapp.testing import verifyObject
5
 
from lp.testing.layers import ZopelessDatabaseLayer
6
4
from lp.registry.interfaces.pocket import PackagePublishingPocket
7
5
from lp.registry.interfaces.series import SeriesStatus
 
6
from lp.services.webapp.testing import verifyObject
8
7
from lp.soyuz.adapters.copypolicy import (
9
8
    InsecureCopyPolicy,
10
9
    MassSyncCopyPolicy,
15
14
    )
16
15
from lp.soyuz.interfaces.copypolicy import ICopyPolicy
17
16
from lp.testing import TestCaseWithFactory
 
17
from lp.testing.layers import ZopelessDatabaseLayer
18
18
 
19
19
 
20
20
class TestCopyPolicy(TestCaseWithFactory):