~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/blackbox.py

  • Committer: Martin Pool
  • Date: 2005-08-02 14:02:45 UTC
  • Revision ID: mbp@sourcefrog.net-20050802140245-b928a80bdb4fed45
- bzr mv command that works like mv in unix -- either rename or delete depending

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
 
51
51
 
 
52
class MvCommand(BzrTestBase):
 
53
    def runbzr(self):
 
54
        """Test two modes of operation for mv"""
 
55
        b = Branch('.', init=True)
 
56
        self.build_tree(['a', 'c', 'subdir/'])
 
57
        self.run_bzr('mv', 'a', 'b')
 
58
        self.run_bzr('mv', 'b', 'subdir')
 
59
        self.run_bzr('mv', 'subdir/b', 'a')
 
60
        self.run_bzr('mv', 'a', 'b', 'subdir')
 
61
        self.run_bzr('mv', 'subdir/a', 'subdir/newa')
 
62
 
 
63
 
 
64
 
52
65
class TestVersion(BzrTestBase):
53
66
    """Check output from version command and master option is reasonable"""
54
67
    def runTest(self):