/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/tree_implementations/test_tree.py

  • Committer: Aaron Bentley
  • Date: 2008-07-29 06:20:25 UTC
  • mto: (3363.14.6 intertree)
  • mto: This revision was merged to the branch mainline in revision 3723.
  • Revision ID: aaron@aaronbentley.com-20080729062025-djr0t4gno6mieqw4
Ensure versioned files are not listed by extras

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
 
212
212
    def test_extras(self):
213
213
        work_tree = self.make_branch_and_tree('tree')
214
 
        self.build_tree(['tree/file'])
215
 
        work_tree.add('file')
216
 
        work_tree.commit('add file')
 
214
        self.build_tree(['tree/file', 'tree/versioned-file'])
 
215
        work_tree.add(['file', 'versioned-file'])
 
216
        work_tree.commit('add files')
217
217
        work_tree.remove('file')
218
218
        tree = self._convert_tree(work_tree)
219
219
        if isinstance(tree,