14
0

Accepting request 556077 from home:sebix:branches:devel:languages:python

- update to version 1.0.12

OBS-URL: https://build.opensuse.org/request/show/556077
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mockito?expand=0&rev=7
This commit is contained in:
Tomáš Chvátal
2017-12-12 08:14:10 +00:00
committed by Git OBS Bridge
parent 3bde18a439
commit 07f26a08e3
5 changed files with 51 additions and 37 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Mon Dec 11 19:47:18 UTC 2017 - sebix+novell.com@sebix.at
- update to version 1.0.12
* see CHANGES.txt for a detailed changelog
* changes in version 1.0.12:
- Better error messages for failed verifications.
* changes in version 1.0.7 - 1.0.10
- ``verifyZeroInteractions`` implemented. This is actually a *breaking change*, because ``verifyZeroInteractions`` was an alias for ``verifyNoMoreInteractions`` (sic!).
- All `verify*` functions now warn you if you pass in an object which was never stubbed.
* changes in version 1.0.0 - 1.0.5
- mockito's strict mode is far more strict than before
- ``mock``, ``when``, ``verify`` return mostly empty objects. It is unlikely to have a method_name clash.
- ``Mock()`` is now an implementation detail; it is **not** exported anymore. Use ``mock()``.
* changes in version 0.7.1:
- bugfixes
* changes in version 0.7.0:
- bugfixes
* changes in version 0.6.1:
- Added ``thenAnswer(callable)``. The callable will be called to compute the answer the stubbed method will return. For that it will receive the arguments of the caller.
* changes in version 0.6.0:
- Breaking change: Throw early when calling not expected methods in strict mode.
* changes in version 0.5.3:
- Remove hard coded distribute setup files.
-------------------------------------------------------------------
Sun Dec 8 16:15:34 UTC 2013 - p.drouand@gmail.com