~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testbzr

  • Committer: Martin Pool
  • Date: 2005-05-06 02:49:04 UTC
  • Revision ID: mbp@sourcefrog.net-20050506024904-8d274b77f0f28b7e
- new commit --file option!

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
 
231
231
    runcmd('bzr move sub2/hello.txt .')
232
232
    assert exists('hello.txt')
233
 
    
 
233
 
 
234
    f = file('hello.txt', 'wt')
 
235
    f.write('some nice new content\n')
 
236
    f.close()
 
237
 
 
238
    f = file('msg.tmp', 'wt')
 
239
    f.write('this is my new commit\n')
 
240
    f.close()
 
241
 
 
242
    runcmd('bzr commit -F msg.tmp')
234
243
    
235
244
    cd('..')
236
245