~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/tests/test_apportjob.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-22 12:41:32 UTC
  • mfrom: (14578.2.5 librarian-services)
  • Revision ID: launchpad@pqm.canonical.com-20111222124132-s1yqnjjb1jl7384h
[r=wgrant][no-qa] Move most non-server librarian stuff from around
        the tree to lp.services.librarian. canonical.launchpad.{browser,
        database} are no longer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
from zope.security.proxy import removeSecurityProxy
14
14
 
15
15
from canonical.config import config
16
 
from canonical.launchpad.interfaces.librarian import ILibraryFileAliasSet
17
 
from lp.services.temporaryblobstorage.interfaces import (
18
 
    ITemporaryStorageManager,
19
 
    )
20
 
from lp.services.scripts.tests import run_script
21
16
from canonical.launchpad.webapp.interfaces import ILaunchpadRoot
22
17
from canonical.testing.layers import (
23
18
    LaunchpadFunctionalLayer,
38
33
    FileBugDataParser,
39
34
    )
40
35
from lp.services.job.interfaces.job import JobStatus
 
36
from lp.services.librarian.interfaces import ILibraryFileAliasSet
 
37
from lp.services.scripts.tests import run_script
 
38
from lp.services.temporaryblobstorage.interfaces import (
 
39
    ITemporaryStorageManager,
 
40
    )
41
41
from lp.testing import (
42
42
    login_person,
43
43
    TestCaseWithFactory,