/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/selftest/versioning.py

  • Committer: Martin Pool
  • Date: 2005-07-29 22:21:25 UTC
  • Revision ID: mbp@sourcefrog.net-20050729222125-f1143d5c05e6707d
- split TreeDelta and compare_trees out into new module bzrlib.delta

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
        
44
44
        delta = compare_trees(b.basis_tree(), b.working_tree())
45
45
 
46
 
        self.log('delta.added = %r' % delta.added)
47
 
 
48
46
        self.assertEquals(len(delta.added), 1)
49
47
        self.assertEquals(delta.added[0][0], 'foo')
50
48
        self.failIf(delta.modified)