~xpresser-team/xpresser/xpresser-type-with-hold

« back to all changes in this revision

Viewing changes to xpresser/lib/testing.py

  • Committer: Gustavo Niemeyer
  • Date: 2010-05-16 22:59:48 UTC
  • Revision ID: gustavo@niemeyer.net-20100516225948-hm96jar095u9jhm2
Creating branch with initial version of Xpresser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
from twisted.trial.unittest import TestCase as TrialTestCase
 
3
 
 
4
from xpresser.lib.mocker import MockerTestCase
 
5
 
 
6
 
 
7
class TestCase(MockerTestCase, TrialTestCase):
 
8
    """Base class for all Ensemble tests. Common useful logic goes here."""