~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_selftest.py

  • Committer: Robert Collins
  • Date: 2006-05-16 06:45:43 UTC
  • mto: (1713.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1714.
  • Revision ID: robertc@robertcollins.net-20060516064543-5cb7cc63047ba98b
Start on bench_add, an add benchtest.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
import bzrlib
25
25
from bzrlib.progress import _BaseProgressBar
26
26
from bzrlib.tests import (
27
 
                          _load_module_by_name,
28
27
                          ChrootedTestCase,
29
28
                          TestCase,
30
29
                          TestCaseInTempDir,
33
32
                          TestSuite,
34
33
                          TextTestRunner,
35
34
                          )
 
35
from bzrlib.tests.TestUtil import _load_module_by_name
36
36
import bzrlib.errors as errors
37
37
 
38
38