~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-16 14:03:54 UTC
  • mfrom: (2017.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060916140354-1a9932f525bb7182
(robertc) Add MemoryTree and TreeBuilder test helpers. Also test behavior of transport.has('/') which caused failures in this when merging, and as a result cleanup the sftp path normalisation logic.

Show diffs side-by-side

added added

removed removed

Lines of Context:
123
123
      off 40ms of startup time, while retaining compatibility. See:
124
124
      ``bzrlib/inspect_for_copy.py`` for more details. (John Arbash Meinel)
125
125
 
 
126
    * WorkingTree has a new parent class MutableTree which represents the 
 
127
      specialisations of Tree which are able to be altered. (Robert Collins)
 
128
 
 
129
    * New methods mkdir and put_file_bytes_non_atomic on MutableTree that
 
130
      mutate the tree and its contents. (Robert Collins)
 
131
 
126
132
    * Transport behaviour at the root of the URL is now defined and tested.
127
133
      (Andrew Bennetts, Robert Collins)
128
134
 
 
135
  TESTING:
 
136
 
 
137
    * New test helper classs MemoryTree. This is typically accessed via
 
138
      ``self.make_branch_and_memory_tree()`` in test cases. (Robert Collins)
 
139
      
129
140
    * Add start_bzr_subprocess and stop_bzr_subprocess to allow test code to
130
141
      continue running concurrently with a subprocess of bzr. (Andrew Bennetts,
131
142
      Robert Collins)