/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_mv.py

  • Committer: Martin Pool
  • Date: 2009-03-13 07:54:48 UTC
  • mfrom: (4144 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4189.
  • Revision ID: mbp@sourcefrog.net-20090313075448-jlz1t7baz7gzipqn
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
 
78
78
    def test_mv_unqualified(self):
79
79
        self.run_bzr_error(['^bzr: ERROR: missing file argument$'], 'mv')
80
 
        
 
80
 
81
81
    def test_mv_invalid(self):
82
82
        tree = self.make_branch_and_tree('.')
83
83
        self.build_tree(['test.txt', 'sub1/'])
91
91
            ["^bzr: ERROR: Could not move test.txt => .*hello.txt: "
92
92
             "sub1 is not versioned\.$"],
93
93
            'mv test.txt sub1/hello.txt')
94
 
        
 
94
 
95
95
    def test_mv_dirs(self):
96
96
        tree = self.make_branch_and_tree('.')
97
97
        self.build_tree(['hello.txt', 'sub1/'])