~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testlog.py

  • Committer: Martin Pool
  • Date: 2005-08-30 01:35:40 UTC
  • Revision ID: mbp@sourcefrog.net-20050830013540-34e8996a86ba25fb
- rename FunctionalTest to TestCaseInTempDir

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
import os
18
18
from cStringIO import StringIO
19
19
 
20
 
from bzrlib.selftest import BzrTestBase, InTempDir
 
20
from bzrlib.selftest import BzrTestBase, TestCaseInTempDir
21
21
from bzrlib.log import LogFormatter, show_log, LongLogFormatter
22
22
from bzrlib.branch import Branch
23
23
 
48
48
        self.logs.append(le)
49
49
 
50
50
 
51
 
class SimpleLogTest(InTempDir):
 
51
class SimpleLogTest(TestCaseInTempDir):
52
52
 
53
53
    def checkDelta(self, delta, **kw):
54
54
        """Check the filenames touched by a delta are as expected."""