~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/librarianserver/tests/test_db.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:
6
6
import transaction
7
7
from zope.component import getUtility
8
8
 
 
9
from lp.services.librarian.model import LibraryFileContent
 
10
from lp.services.librarianserver import db
9
11
from lp.services.webapp.interfaces import (
10
12
    DEFAULT_FLAVOR,
11
13
    IStoreSelector,
12
14
    MAIN_STORE,
13
15
    )
14
 
from canonical.librarian import db
15
16
from lp.testing.layers import LaunchpadZopelessLayer
16
 
from lp.services.librarian.model import LibraryFileContent
17
17
 
18
18
 
19
19
class DBTestCase(unittest.TestCase):