~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/database/tests/test_sqlbase.py

  • Committer: William Grant
  • Date: 2011-12-30 06:47:17 UTC
  • mto: This revision was merged to the branch mainline in revision 14610.
  • Revision ID: william.grant@canonical.com-20111230064717-n5re5t6we5w8o17z
Replace canonical.database usage everywhere, and format-imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright 2009 Canonical Ltd.  This software is licensed under the
2
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
3
 
4
 
from canonical.database import sqlbase
5
 
import unittest, doctest
 
4
import doctest
 
5
from doctest import (
 
6
    ELLIPSIS,
 
7
    NORMALIZE_WHITESPACE,
 
8
    REPORT_NDIFF,
 
9
    )
 
10
import unittest
6
11
 
7
 
from doctest import ELLIPSIS, NORMALIZE_WHITESPACE, REPORT_NDIFF
 
12
from lp.services.database import sqlbase
8
13
 
9
14
 
10
15
def test_suite():