~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/workingtree_implementations/test_workingtree.py

  • Committer: Aaron Bentley
  • Date: 2009-03-10 02:54:16 UTC
  • mto: This revision was merged to the branch mainline in revision 4112.
  • Revision ID: aaron@aaronbentley.com-20090310025416-l9kp0uruhu9trobf
Disable autodetection of tree references

Show diffs side-by-side

added added

removed removed

Lines of Context:
811
811
            os.symlink('target', 'symlink')
812
812
            names.append('symlink')
813
813
        tree.add(names, [n + '-id' for n in names])
814
 
        if tree.supports_tree_reference():
815
 
            sub_tree = self.make_branch_and_tree('tree-reference')
816
 
            sub_tree.set_root_id('tree-reference-id')
817
 
            sub_tree.commit('message')
818
 
            names.append('tree-reference')
819
 
            tree.add_reference(sub_tree)
820
814
        # now when we first look, we should see everything with the same kind
821
815
        # with which they were initially added
822
816
        for n in names: