/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/test_clean_tree.py

  • Committer: Jelmer Vernooij
  • Date: 2011-04-16 08:42:21 UTC
  • mfrom: (5777.6.11 commit-lossy)
  • mto: This revision was merged to the branch mainline in revision 5792.
  • Revision ID: jelmer@samba.org-20110416084221-g9kgp1j4o9zo0kk4
merge commit-lossy

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
        BzrDir.create_standalone_workingtree('branch')
47
47
        os.symlink(os.path.realpath('no-die-please'), 'branch/die-please')
48
48
        os.mkdir('no-die-please')
49
 
        self.failUnlessExists('branch/die-please')
 
49
        self.assertPathExists('branch/die-please')
50
50
        os.mkdir('no-die-please/child')
51
51
 
52
52
        clean_tree('branch', unknown=True, no_prompt=True)
53
 
        self.failUnlessExists('no-die-please')
54
 
        self.failUnlessExists('no-die-please/child')
 
53
        self.assertPathExists('no-die-please')
 
54
        self.assertPathExists('no-die-please/child')
55
55
 
56
56
    def test_iter_deletable(self):
57
57
        """Files are selected for deletion appropriately"""