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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-07 21:11:44 UTC
  • mfrom: (1558.7.13 bzr.spurious-conflict)
  • Revision ID: pqm@pqm.ubuntu.com-20060407211144-0d74356b1cc77c00
Reduced spurious conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
        transform3.adjust_path('tip', root_id, tip_id)
189
189
        transform3.apply()
190
190
 
 
191
    def test_add_del(self):
 
192
        start, root = self.get_transform()
 
193
        start.new_directory('a', root, 'a')
 
194
        start.apply()
 
195
        transform, root = self.get_transform()
 
196
        transform.delete_versioned(transform.trans_id_tree_file_id('a'))
 
197
        transform.new_directory('a', root, 'a')
 
198
        transform.apply()
 
199
 
191
200
    def test_unversioning(self):
192
201
        create_tree, root = self.get_transform()
193
202
        parent_id = create_tree.new_directory('parent', root, 'parent-id')