Revision history for Perl extension Test::Warn.
0.04 Tue Jul 16
- implemented the possibility of saying
warning_like {foo()} {carped => ['x', 'y', 'z']}, "Warnings with x, y and z"
instead of
warning_like {foo()} [{carped => 'x'},
{carped => 'y'},
{carped => 'z'}], "Warnings with x, y and z, too"
- added Dependancy to Switch
0.03 Mon Jul 15
- removed bug that occured with some versions of perl
Something something like
use List::Util qw/first/;
{$warn_kind => first {"$_\n"} split /\n/, $msg};
where the argument to first wasn't detected as a sub block
- removed Dependency of List::Util
0.02 Thu Jul 11
- implemented carped option to define a warning coming from carp
0.01 Wed Jul 10
- first CPAN release
- warning_is / warning_are implemented
- warning_like / warnings_like implemented