~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/librarian/ftests/test_db.py

  • Committer: William Grant
  • Date: 2011-12-22 05:37:22 UTC
  • mto: This revision was merged to the branch mainline in revision 14581.
  • Revision ID: william.grant@canonical.com-20111222053722-gm6h9zi3lioz00ky
Move librarian stuff from canonical.launchpad to lp.services.librarian. canonical.librarian remains untouched.

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 canonical.launchpad.database.librarian import LibraryFileContent
10
9
from canonical.launchpad.webapp.interfaces import (
11
 
        IStoreSelector, MAIN_STORE, DEFAULT_FLAVOR)
 
10
    DEFAULT_FLAVOR,
 
11
    IStoreSelector,
 
12
    MAIN_STORE,
 
13
    )
12
14
from canonical.librarian import db
13
15
from canonical.testing.layers import LaunchpadZopelessLayer
 
16
from lp.services.librarian.model import LibraryFileContent
14
17
 
15
18
 
16
19
class DBTestCase(unittest.TestCase):