~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/versioning.py

  • Committer: Martin Pool
  • Date: 2005-09-16 09:19:54 UTC
  • Revision ID: mbp@sourcefrog.net-20050916091954-aee6d7be00db6354
- more docs in commit code

Show diffs side-by-side

added added

removed removed

Lines of Context:
153
153
        for fn in ('a/one', 'b/two', 'top'):
154
154
            file(fn, 'w').write('new contents')
155
155
            
 
156
        debug('start selective subdir commit')
156
157
        run_bzr('commit', 'a', '-m', 'commit a only')
157
158
        
158
159
        old = b.revision_tree(b.lookup_revision(1))
178
179
        
179
180
        # TODO: factor out some kind of assert_tree_state() method
180
181
        
 
182
 
 
183
if __name__ == '__main__':
 
184
    import unittest
 
185
    unittest.main()
 
186