~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to testbzr

  • Committer: Martin Pool
  • Date: 2005-05-16 02:41:19 UTC
  • Revision ID: mbp@sourcefrog.net-20050516024119-a814d2fd016ae3c2
- new bzr ignore test cases from ddaa

Show diffs side-by-side

added added

removed removed

Lines of Context:
315
315
    runcmd('bzr add foo.c')
316
316
    assert backtick('bzr unknowns') == ''
317
317
 
 
318
    # 'ignore' works when creating the .bzignore file
318
319
    file('foo.blah', 'wt').write('blah')
319
320
    assert backtick('bzr unknowns') == 'foo.blah\n'
320
321
    runcmd('bzr ignore *.blah')
321
322
    assert backtick('bzr unknowns') == ''
322
 
    assert file('.bzrignore', 'rt').read() == '*.blah\n'
 
323
    assert file('.bzrignore', 'rb').read() == '*.blah\n'
323
324
 
 
325
    # 'ignore' works when then .bzrignore file already exists
 
326
    file('garh', 'wt').write('garh')
 
327
    assert backtick('bzr unknowns') == 'garh\n'
 
328
    runcmd('bzr ignore garh')
 
329
    assert backtick('bzr unknowns') == ''
 
330
    assert file('.bzrignore', 'rb').read() == '*.blah\ngarh\n'
324
331
 
325
332
    progress("all tests passed!")
326
333
except Exception, e: