8
0

Accepting request 741578 from devel:languages:perl:autoupdate

- updated to 0.171.0
   see /usr/share/doc/packages/perl-Test-MockModule/Changes
  v0.171.0
  - 89dc5c0 Fixes #25 - mocking core::global no longer fails trying to load the module - Geoff Franks
  - 9bb081a update ci for fewer infinite loops - Geoff Franks
  - 289d014 Update release notes for all the newly merged PRs - Geoff Franks
  - fef9e74 Allow chaining of new with mock, redefine, define - Nicolas Rochelemagne
  - e136131 Prevent redefine() from triggering DESTROY. - Felipe Gasper
  - 311f6b4 Adjust Travis CI configuration to use travis-perl.github.io - Nicolas Rochelemagne
  - 2bed3e2 Add strict mode to ban the use of noop and mock. - Todd Rinaldo
  - 0298d8d Provide define method so the mock method is unneeded in tests. - Todd Rinaldo
  
  v0.171.0
  - allow chaining of new with mock, redefine, define
  - redefine() no longer triggers errors if the object being mocked is not a hashref
  - Adds a define() method for mocking new functions that do not exist. Throws an
    error if a function does exist.
  - Adds `strict` mode to prevent usage of noop() and mock() functions, and force
    the usage of define/redefine if desired.:
    ```
    use Test::MockModule qw/strict/;
    ```
  - Mocking CORE::GLOBAL no longer throws errors indicating CORE::GLOBAL should have
    been installed/loaded

OBS-URL: https://build.opensuse.org/request/show/741578
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Test-MockModule?expand=0&rev=26
This commit is contained in:
2019-10-23 09:56:19 +00:00
committed by Git OBS Bridge
parent cff7a91c4a
commit f4e44478ee
4 changed files with 38 additions and 9 deletions

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
Mon Oct 21 14:42:00 UTC 2019 - <timueller+perl@suse.de>
- updated to 0.171.0
see /usr/share/doc/packages/perl-Test-MockModule/Changes
v0.171.0
- 89dc5c0 Fixes #25 - mocking core::global no longer fails trying to load the module - Geoff Franks
- 9bb081a update ci for fewer infinite loops - Geoff Franks
- 289d014 Update release notes for all the newly merged PRs - Geoff Franks
- fef9e74 Allow chaining of new with mock, redefine, define - Nicolas Rochelemagne
- e136131 Prevent redefine() from triggering DESTROY. - Felipe Gasper
- 311f6b4 Adjust Travis CI configuration to use travis-perl.github.io - Nicolas Rochelemagne
- 2bed3e2 Add strict mode to ban the use of noop and mock. - Todd Rinaldo
- 0298d8d Provide define method so the mock method is unneeded in tests. - Todd Rinaldo
v0.171.0
- allow chaining of new with mock, redefine, define
- redefine() no longer triggers errors if the object being mocked is not a hashref
- Adds a define() method for mocking new functions that do not exist. Throws an
error if a function does exist.
- Adds `strict` mode to prevent usage of noop() and mock() functions, and force
the usage of define/redefine if desired.:
```
use Test::MockModule qw/strict/;
```
- Mocking CORE::GLOBAL no longer throws errors indicating CORE::GLOBAL should have
been installed/loaded
-------------------------------------------------------------------
Thu Sep 20 06:02:05 UTC 2018 - Stephan Kulow <coolo@suse.com>