~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/versioning.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:
23
23
 
24
24
import os
25
25
 
26
 
from bzrlib.selftest import BzrTestBase, FunctionalTestCase
 
26
from bzrlib.selftest import BzrTestBase, TestCaseInTempDir
27
27
from bzrlib.branch import Branch
28
28
 
29
29
import logging
31
31
debug = logger.debug
32
32
 
33
33
 
34
 
class TestVersioning(FunctionalTestCase):
 
34
class TestVersioning(TestCaseInTempDir):
35
35
    
36
36
    def test_mkdir(self): 
37
37
        """Basic 'bzr mkdir' operation"""
133
133
 
134
134
        
135
135
        
136
 
class SubdirCommit(FunctionalTestCase):
 
136
class SubdirCommit(TestCaseInTempDir):
137
137
 
138
138
    def test_subdir_commit(self):
139
139
        """Test committing a subdirectory, and committing within a directory."""