~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testrevisionnamespaces.py

  • Committer: Martin Pool
  • Date: 2005-09-01 07:21:18 UTC
  • Revision ID: mbp@sourcefrog.net-20050901072118-f609f9e36f7896d9
- tiny refactoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
 
18
 
from bzrlib.selftest import InTempDir, TestBase
 
18
from bzrlib.selftest import TestCaseInTempDir
19
19
 
20
 
class TestRevisionNamespaces(InTempDir):
21
 
    """Functional tests for hashcache"""
22
 
    def runTest(self):
 
20
class TestRevisionNamespaces(TestCaseInTempDir):
 
21
    def test_revision_namespaces(self):
 
22
        """Functional tests for hashcache"""
23
23
        from bzrlib.errors import BzrError
24
24
        from bzrlib.branch import Branch
25
 
        import os
26
 
        import time
27
25
 
28
26
        b = Branch('.', init=True)
29
27
 
40
38
        self.assertEquals(b.get_revision_info('date:+today'), (1, 'a@r-0-1'))
41
39
 
42
40
        self.assertEquals(b.get_revision_info('last:1'), (3, 'a@r-0-3'))
43
 
 
44
 
TEST_CLASSES = [
45
 
    TestRevisionNamespaces
46
 
    ]