/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/blackbox.py

  • Committer: Martin Pool
  • Date: 2005-08-17 23:31:01 UTC
  • Revision ID: mbp@sourcefrog.net-20050817233101-0939da1cf91f2472
- comment out unused test cases so that the install 
  script doesn't complain

Show diffs side-by-side

added added

removed removed

Lines of Context:
361
361
        file('hello', 'wt').write('foo')
362
362
        self.runbzr('add hello')
363
363
        self.runbzr('commit -m setup hello')
 
364
 
 
365
        file('goodbye', 'wt').write('baz')
 
366
        self.runbzr('add goodbye')
 
367
        self.runbzr('commit -m setup goodbye')
364
368
        
365
369
        file('hello', 'wt').write('bar')
 
370
        file('goodbye', 'wt').write('qux')
366
371
        self.runbzr('revert hello')
367
372
        self.check_file_contents('hello', 'foo')
 
373
        self.check_file_contents('goodbye', 'qux')
 
374
        self.runbzr('revert')
 
375
        self.check_file_contents('goodbye', 'baz')
368
376