summaryrefslogtreecommitdiff
path: root/NEWS
blob: 4aeccfe6dd0dcccf7d8408f47813a1251acb431f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
0.9.3 (2007-11-24)
==================

- Added support for Python 2.3 (patch by Phillip J. Eby).

- Added MockerTestCase.assert{True,False} aliases, so that they're
  available even in Python 2.3.

- Introduced automatic test coverage verification as part of
  the test suite, based on the 'coverage' module by Ned Batchelder,
  to ensure that it continues to have 100% of statement coverage.


0.9.2 (2007-11-22)
==================

- In recording mode, mock.__class__ will now return Mock, and not
  record the action.  This allows Mocker to be used in interactive
  environments which inspect the result's type, such as in iPython
  (reported by Alex Dante).

- Now Mocker.mock()/proxy()/replace() accept a 'count' keyword
  parameter, which if set to False, the default behavior of allowing
  expressions just once is disabled.


0.9.1 (2007-11-18)
==================

- Fixed setup.py to install mocker.py properly.


0.9 (2007-11-17)
================

- Added MockerTestCase.makeFile() and .makeDir() helpers.  They offer
  easy creation of temporary files/directories, and ensure that they
  get removed after each test method runs.

- Added MockerTestCase.assertMethodsMatch().  It will verify if all
  public methods found in the class passed as the first argument are
  also present in the class passed as the second argument, and that
  they accept the same arguments.  This is useful to verify if a fake
  or stub class has the same API as the real class being simulated.

- Added MockerTestCase.assert[Not]{Starts,Ends}With().

- If the replay() method is called twice, expectations will be fully
  reset so that several similar tests may be performed in a row by
  just calling replay() again.

- Mocker.on_restore() removed.  Restore isn't performed if replay()
  isn't called, and that may not be obvious, so a hook won't be
  exposed for now.

- When using a non-existent import path for Mocker.proxy(), raise an
  ImportError on the base module, rather than using the actual
  string as the object (#162315).


0.8 (2007-11-11)
================

Released!