~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/__init__.py

  • Committer: Martin Pool
  • Date: 2005-08-30 04:05:32 UTC
  • Revision ID: mbp@sourcefrog.net-20050830040532-5d2624faa53e4638
- split builtin commands into separate module bzrlib.builtins;
  bzrlib.commands now only holds the command infrastructure and
  some related junk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
import bzrlib.trace
29
29
import bzrlib.fetch
30
30
 
 
31
 
31
32
MODULES_TO_TEST = []
32
33
MODULES_TO_DOCTEST = []
33
34
 
34
35
from logging import debug, warning, error
35
36
 
 
37
class CommandFailed(Exception):
 
38
    pass
36
39
 
37
40
class TestCase(unittest.TestCase):
38
41
    """Base class for bzr unit tests.