~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/testing/__init__.py

  • Committer: Robert Collins
  • Date: 2010-09-18 08:00:27 UTC
  • mto: This revision was merged to the branch mainline in revision 11574.
  • Revision ID: robert@canonical.com-20100918080027-pkt8kbvgsuxgrsp5
Add fixtures as a dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
    format_registry,
76
76
    )
77
77
from bzrlib.transport import get_transport
 
78
import fixtures
78
79
import pytz
79
80
from storm.expr import Variable
80
81
from storm.store import Store
301
302
        debug(False)
302
303
 
303
304
 
304
 
class TestCase(testtools.TestCase):
 
305
class TestCase(testtools.TestCase, fixtures.TestWithFixtures):
305
306
    """Provide Launchpad-specific test facilities."""
306
307
 
307
308
    def becomeDbUser(self, dbuser):