~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/archiveuploader/tests/test_uploadpolicy.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-01 11:37:40 UTC
  • mfrom: (14612.2.10 oh-god-so-many-imports)
  • Revision ID: launchpad@pqm.canonical.com-20120101113740-o241xl1m2njr25qn
[r=wgrant][no-qa] Post-apocalyptic tree-wide format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# Copyright 2010 Canonical Ltd.  This software is licensed under the
4
4
# GNU Affero General Public License version 3 (see the file LICENSE).
5
5
 
6
 
from lp.testing.layers import DatabaseFunctionalLayer
7
6
from lp.app.errors import NotFoundError
8
7
from lp.archiveuploader.uploadpolicy import (
9
8
    AbstractUploadPolicy,
13
12
    TestCase,
14
13
    TestCaseWithFactory,
15
14
    )
 
15
from lp.testing.layers import DatabaseFunctionalLayer
16
16
 
17
17
 
18
18
class TestUploadPolicy_validateUploadType(TestCase):