~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Robert Collins
  • Date: 2009-08-27 21:48:33 UTC
  • mto: This revision was merged to the branch mainline in revision 4663.
  • Revision ID: robertc@robertcollins.net-20090827214833-nlq6gi269u05hnf6
Test split with unversioned files within the test tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        wt.add(['b', 'b/c'])
32
32
        wt.commit('rev1')
33
33
        self.run_bzr('split a/b')
34
 
        self.run_bzr_error(('.* is not versioned',), 'split q')
 
34
        self.run_bzr_error(('.* is not versioned',), 'split q', working_dir='a')
35
35
 
36
36
    def test_split_repo_failure(self):
37
37
        repo = self.make_repository('branch', shared=True, format='knit')