~bzr-pqm/bzr/bzr.dev

« 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:
37
37
 
38
38
        self.assertRaises(OSError, run_bzr, ['mkdir', 'foo'])
39
39
 
40
 
        from bzrlib.diff import compare_trees, TreeDelta
 
40
        from bzrlib.diff import compare_trees
41
41
        from bzrlib.branch import Branch
42
42
        b = Branch('.')
43
43
        
147
147
        chdir('..')
148
148
        eq(run_bzr(['add']), 0)
149
149
        eq(list(b.unknowns()), [])
150
 
        
 
 
b'\\ No newline at end of file'
 
150