~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bundle.py

  • Committer: Aaron Bentley
  • Date: 2006-09-21 17:40:20 UTC
  • mto: This revision was merged to the branch mainline in revision 2048.
  • Revision ID: abentley@panoramicfeedback.com-20060921174020-5a6a95957ad5dd7b
Implement testament format 3 strict

Show diffs side-by-side

added added

removed removed

Lines of Context:
610
610
                          verbose=False)
611
611
        bundle = self.get_valid_bundle('a@cset-0-5', 'a@cset-0-6')
612
612
        other = self.get_checkout('a@cset-0-5')
 
613
        tree1_inv = self.tree1.branch.repository.get_inventory_xml('a@cset-0-5')
 
614
        tree2_inv = other.branch.repository.get_inventory_xml('a@cset-0-5')
 
615
        self.assertEqualDiff(tree1_inv, tree2_inv)
613
616
        other.rename_one('sub/dir/nolastnewline.txt', 'sub/nolastnewline.txt')
614
617
        other.commit('rename file', rev_id='a@cset-0-6b')
615
618
        merge([other.basedir, -1], [None, None], this_dir=self.tree1.basedir)