~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests.py

  • Committer: Martin Pool
  • Date: 2005-05-12 02:18:48 UTC
  • Revision ID: mbp@sourcefrog.net-20050512021848-d1a727373aee2c85
- WorkingTree loads statcache in constructor and holds
  it permanently

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
 
>>> bzrlib.commands.cmd_rocks()
33
 
it sure does!
34
 
 
35
 
Hey, nice place to begin.
 
32
>>> from bzrlib.osutils import isdir, isfile
36
33
 
37
34
The basic object is a Branch.  We have a special helper class
38
35
ScratchBranch that automatically makes a directory and cleans itself
104
101
  >>> r = b.get_revision(b.lookup_revision(1))
105
102
  >>> r.message
106
103
  'start hello world'
107
 
  >>> b.write_log(show_timezone='utc')
 
104
  >>> bzrlib.show_log(b, show_timezone='utc')
108
105
  ----------------------------------------
109
106
  revno: 1
110
107
  committer: foo@nowhere
162
159
    >>> [v[0] for v in b.inventory.directories()]
163
160
    ['', 'd1']
164
161
    >>> list(b.working_tree().unknowns())
165
 
    ['d1/f1', 'd2']
 
162
    ['d2', 'd1/f1']
166
163
    >>> # d2 comes first because it's in the top directory
167
164
 
168
165
    >>> b.add('d2')
184
181
    ['configure', 'configure.in', 'doc', 'foo', 'foo.c', 'src']
185
182
    >>> b.add(['doc', 'foo.c', 'src', 'configure.in'])
186
183
    >>> list(b.unknowns())
187
 
    ['configure', 'doc/configure', 'foo']
 
184
    ['configure', 'foo', 'doc/configure']
188
185
    >>> f = file(b.abspath('.bzrignore'), 'w')
189
186
    >>> f.write('./configure\n'
190
187
    ...         './foo\n')
191
188
    >>> f.close()
192
189
    >>> b.add('.bzrignore')
193
190
    >>> list(b.unknowns())
194
 
    ['configure', 'doc/configure', 'foo']
 
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
 
195
216
"""