~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests.py

  • Committer: mbp at sourcefrog
  • Date: 2005-04-01 04:59:19 UTC
  • Revision ID: mbp@sourcefrog.net-20050401045918-5c135d1ac180d5e0
few more test cases

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
    >>> b.add('.bzrignore')
193
193
    >>> list(b.unknowns())
194
194
    ['doc/configure']
195
 
 
196
 
Detection of missing files and directories:
197
 
 
198
 
    
 
195
    >>> b.commit("commit 1")
 
196
    >>> list(b.unknowns())
 
197
    ['doc/configure']
 
198
    >>> b.add("doc/configure")
 
199
    >>> b.commit("commit more")
 
200
 
199
201
"""