14
0

- Update to 1.1.1:

* Added forget_invocations function. Thanks to @maximkulkin
  * Fix: The context manager (with) has now a proper implementation
  * Fix: Calling patch with two arguments can now be used with with
  * Fix: Do not treat the placeholder arguments (Ellipsis, args, kwargs) as special on call time anymore. (T.i. they only have a meaning when stubbing or verifying.)
  * Enhancement: Changed some truthy or equality tests to identity (is) tests. This reduces edge-cases where some user object defines __eq__ or __bool__. (Hello _numpy_!)
- Run tests

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-mockito?expand=0&rev=12
This commit is contained in:
Tomáš Chvátal
2019-04-05 12:42:08 +00:00
committed by Git OBS Bridge
parent cbb078a7a4
commit 56dca015d4
4 changed files with 22 additions and 6 deletions

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Fri Apr 5 12:38:51 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 1.1.1:
* Added forget_invocations function. Thanks to @maximkulkin
* Fix: The context manager (with) has now a proper implementation
* Fix: Calling patch with two arguments can now be used with with
* Fix: Do not treat the placeholder arguments (Ellipsis, args, kwargs) as special on call time anymore. (T.i. they only have a meaning when stubbing or verifying.)
* Enhancement: Changed some truthy or equality tests to identity (is) tests. This reduces edge-cases where some user object defines __eq__ or __bool__. (Hello _numpy_!)
- Run tests
-------------------------------------------------------------------
Tue Dec 4 12:50:25 UTC 2018 - Matej Cepl <mcepl@suse.com>