~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testsweet.py

  • Committer: Martin Pool
  • Date: 2005-06-27 03:19:33 UTC
  • mto: This revision was merged to the branch mainline in revision 852.
  • Revision ID: mbp@sourcefrog.net-20050627031933-8c7311c41a7148d3
Add stubbed-out TestSkipped

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    pass
31
31
 
32
32
 
 
33
 
 
34
class TestSkipped(Exception):
 
35
    """Indicates that a test was intentionally skipped, rather than failing."""
 
36
    # XXX: Not used yet
 
37
 
 
38
 
33
39
class TestBase(TestCase):
34
40
    """Base class for bzr test cases.
35
41