~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/whitebox.py

  • Committer: Martin Pool
  • Date: 2005-05-31 07:52:38 UTC
  • Revision ID: mbp@sourcefrog.net-20050531075238-cbe5c652c51d2d8a
- cleanup test code

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
from unittest import TestCase
6
6
import os, unittest
7
7
 
8
 
def Reporter(TestResult):
9
 
    def startTest(self, test):
10
 
        super(Reporter, self).startTest(test)
11
 
        print test.id(),
12
 
 
13
 
    def stopTest(self, test):
14
 
        print
15
 
 
16
8
class BranchPathTestCase(TestCase):
17
9
    """test for branch path lookups
18
10