~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests.py

  • Committer: mbp at sourcefrog
  • Date: 2005-03-28 10:04:39 UTC
  • Revision ID: mbp@sourcefrog.net-20050328100439-80f2cf8bb0e5a621
better messages from check command

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
>>> import bzrlib, os
31
31
>>> from bzrlib import ScratchBranch
32
 
>>> from bzrlib.osutils import isdir, isfile
 
32
>>> bzrlib.commands.cmd_rocks()
 
33
it sure does!
 
34
 
 
35
Hey, nice place to begin.
33
36
 
34
37
The basic object is a Branch.  We have a special helper class
35
38
ScratchBranch that automatically makes a directory and cleans itself
101
104
  >>> r = b.get_revision(b.lookup_revision(1))
102
105
  >>> r.message
103
106
  'start hello world'
104
 
  >>> bzrlib.show_log(b, show_timezone='utc')
 
107
  >>> b.write_log(show_timezone='utc')
105
108
  ----------------------------------------
106
109
  revno: 1
107
110
  committer: foo@nowhere
159
162
    >>> [v[0] for v in b.inventory.directories()]
160
163
    ['', 'd1']
161
164
    >>> list(b.working_tree().unknowns())
162
 
    ['d2', 'd1/f1']
 
165
    ['d1/f1', 'd2']
163
166
    >>> # d2 comes first because it's in the top directory
164
167
 
165
168
    >>> b.add('d2')
181
184
    ['configure', 'configure.in', 'doc', 'foo', 'foo.c', 'src']
182
185
    >>> b.add(['doc', 'foo.c', 'src', 'configure.in'])
183
186
    >>> list(b.unknowns())
184
 
    ['configure', 'foo', 'doc/configure']
 
187
    ['configure', 'doc/configure', 'foo']
185
188
    >>> f = file(b.abspath('.bzrignore'), 'w')
186
189
    >>> f.write('./configure\n'
187
190
    ...         './foo\n')
188
191
    >>> f.close()
189
192
    >>> b.add('.bzrignore')
190
193
    >>> list(b.unknowns())
191
 
    ['doc/configure']
192
 
    >>> b.commit("commit 1")
193
 
    >>> list(b.unknowns())
194
 
    ['doc/configure']
195
 
    >>> b.add("doc/configure")
196
 
    >>> b.commit("commit more")
197
 
    >>> del b
198
 
 
199
 
Renames, etc:
200
 
 
201
 
    >>> b = ScratchBranch(files=['foo'], dirs=['subdir'])
202
 
    >>> b.add(['foo', 'subdir'])
203
 
    >>> b.commit('add foo')
204
 
    >>> list(b.unknowns())
205
 
    []
206
 
    >>> b.move(['foo'], 'subdir')
207
 
    foo => subdir/foo
208
 
    >>> b.show_status()
209
 
    R       foo => subdir/foo
210
 
    >>> b.commit("move foo to subdir")
211
 
    >>> isfile(b.abspath('foo'))
212
 
    False
213
 
    >>> isfile(b.abspath('subdir/foo'))
214
 
    True
215
 
 
 
194
    ['configure', 'doc/configure', 'foo']
216
195
"""