/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-08-01 20:25:24 UTC
  • Revision ID: mbp@sourcefrog.net-20050801202524-cc49f230ffa9c4e3
- correctly exclude root_directory from search for added files
  in compare_trees

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)