~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/librarianserver/ftests/test_db.py

  • Committer: William Grant
  • Date: 2011-12-30 01:48:17 UTC
  • mto: (14606.3.6 apocaremains)
  • mto: This revision was merged to the branch mainline in revision 14608.
  • Revision ID: william.grant@canonical.com-20111230014817-7qmddxz1x941socp
Move the rest of canonical.librarian to lp.services.librarianserver.

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):