~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-12-23 00:59:10 UTC
  • mfrom: (4794.1.21 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20091223005910-zatr8ajlw8ul6d6s
(robertc) Add testtools 0.9.2 as a hard dependency to run the test
        suite, improving debug output on selftest --parallel,
        reducing code size and adding support for assertThat. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
Internals
58
58
*********
59
59
 
 
60
* New helper osutils.UnicodeOrBytesToBytesWriter which encodes unicode
 
61
  objects but passes str objects straight through. This is used for
 
62
  selftest but may be useful for diff and other operations that generate
 
63
  mixed output. (Robert Collins)
 
64
 
60
65
Testing
61
66
*******
62
67
 
 
68
* ``bzrlib.tests.TestCase`` now subclasses ``testtools.testcase.TestCase``.
 
69
  This permits features in testtools such as getUniqueInteger and
 
70
  getUniqueString to be used. Because of this, testtools version 0.9.2 or
 
71
  newer is now a dependency to run bzr selftest. Running with versions of
 
72
  testtools less than 0.9.2 will cause bzr to error while loading the test
 
73
  suite. (Robert Collins)
 
74
 
63
75
* The test progress bar no longer distinguishes tests that 'errored' from
64
76
  tests that 'failed' - they're all just failures.
65
77
  (Martin Pool)