~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2010-09-02 20:17:03 UTC
  • mto: This revision was merged to the branch mainline in revision 5409.
  • Revision ID: john@arbash-meinel.com-20100902201703-idn4su89d1388srn
Fix bug #627438 by restoring TestSuite and TestLoader.

Add some tests to ensure that they stay available.

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
SUBUNIT_SEEK_SET = 0
136
136
SUBUNIT_SEEK_CUR = 1
137
137
 
 
138
# These are intentionally brought into this namespace. That way plugins, etc
 
139
# can just "from bzrlib.tests import TestCase, TestLoader, etc"
 
140
TestSuite = TestUtil.TestSuite
 
141
TestLoader = TestUtil.TestLoader
138
142
 
139
143
class ExtendedTestResult(testtools.TextTestResult):
140
144
    """Accepts, reports and accumulates the results of running tests.