Path to this page:
./
devel/p5-Carp-Assert-More,
Perl5 module providing convenience wrappers around Carp::Assert
Branch: CURRENT,
Version: 2.4.0,
Package name: p5-Carp-Assert-More-2.4.0,
Maintainer: pkgsrc-usersCarp::Assert::More Perl5 module provides convenience wrappers
around Carp::Assert.
Required to run:[
lang/perl5] [
devel/p5-Test-Exception] [
devel/p5-Carp-Assert]
Required to build:[
pkgtools/cwrappers]
Master sites: (Expand)
Filesize: 21.901 KB
Version history: (Expand)
- (2024-07-29) Updated to version: p5-Carp-Assert-More-2.4.0
- (2023-12-13) Updated to version: p5-Carp-Assert-More-2.3.0
- (2023-07-06) Updated to version: p5-Carp-Assert-More-1.20nb4
- (2022-06-28) Updated to version: p5-Carp-Assert-More-1.20nb3
- (2021-05-25) Updated to version: p5-Carp-Assert-More-1.20nb2
- (2020-09-01) Updated to version: p5-Carp-Assert-More-1.20nb1
CVS history: (Expand)
2023-12-13 14:57:15 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(devel/p5-Carp-Assert-More) Updated 1.20 to 2.3.0
2.3.0 Tue May 30 21:52:20 CDT 2023
[ENHANCEMENTS]
Added assert_arrayref_of() to verify that all of the elements
in an arrayref are of a given type. For example:
my $users = get_users();
assert_arrayref_of( $users, 'My::User' );
2.2.0 Sun Jan 29 20:23:59 CST 2023
[ENHANCEMENTS]
Added assert_cmp( $x, $op, $y [, $msg] ), analogous to cmp_ok in \
Test::More, so you can do
assert_cmp( $n, '>', 10 );
which will give better diagnostics than just
assert( $n > 10 );
Operators supported are: lt le gt ge == != > >= < <=
assert_all_keys_in() now lists all key failures in the message, not just \
the first one.
assert_keys_are() now lists all key failures in the message, not just \
the first one.
2.1.0 Mon Aug 15 19:54:27 CDT 2022
[ENHANCEMENTS]
Add diagnostic strings to the failures. For example:
assert_nonblank( [ 'foo' ], 'This should be nonblank' );
would fail with:
Assertion (This should be nonblank) failed!
but now fails with:
Assertion (This should be nonblank) failed!
Value is a reference to ARRAY.
Similar changes have been made to:
* assert_all_keys_in
* assert_keys_are
* assert_empty
* assert_nonempty
2.0.1 Fri Aug 13 11:57:15 CDT 2021
[FIXES]
assert_all_keys_in() mistakenly required a non-empty list of
keys to check.
[ENHANCEMENTS]
Sped up assert_isa_in(), assert_is().
2.0.0 Thu Aug 12 23:00::00 CDT 2021
[DIFFERENCES]
Now requires Perl 5.10 or higher. No longer requires Carp::Assert.
The numeric functions are more stringent now. If it expects
a number, then you need to pass a number. For example,
assert_nonnegative($x) would pass if $x was a non-numeric
string. Now it must be numeric.
assert_empty() and assert_nonempty() no longer gives a message
of "Not an array or hash reference". If you don't pass an array
or hash reference, the assertion will just fail with the message
passe3d in.
assert_aoh() and assert_datetime() no longer provide a default
message.
assert_in() is more strict. Each element of the target array
is checked to not be a reference.
assert_exists() and assert_lacks() are more strict. The list
of keys to check cannot be empty.
[ENHANCEMENTS]
Most of the functions are about twice as fast because of reduced
number of function calls internally.
Added assert_context_nonvoid() and assert_context_scalar()
to assert on how the executing function has been called.
assert_in() now lets you use undef as both the needle and one
of the values in the haystack.
1.26 Sat Dec 26 00:26:23 CST 2020
[ENHANCEMENTS]
Add assert_arrayref_nonempty().
Add assert_hashref_nonempty().
1.24 Tue Oct 6 22:37:06 CDT 2020
[ENHANCEMENTS]
The requirement for Perl 5.10 has been reverted to 5.6.1.
1.22 Tue Oct 6 22:03:55 CDT 2020
[ENHANCEMENTS]
Add assert_keys_are() for asserting an exact list of keys.
|
2023-07-06 11:43:03 by Thomas Klausner | Files touched by this commit (2483) |
Log message:
*: recursive bump for perl 5.38
|
2022-06-28 13:38:00 by Thomas Klausner | Files touched by this commit (3952) |
Log message:
*: recursive bump for perl 5.36
|
2021-10-26 12:20:11 by Nia Alarie | Files touched by this commit (3016) |
Log message:
archivers: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
Could not be committed due to merge conflict:
devel/py-traitlets/distinfo
The following distfiles were unfetchable (note: some may be only fetched
conditionally):
./devel/pvs/distinfo pvs-3.2-solaris.tgz
./devel/eclipse/distinfo eclipse-sourceBuild-srcIncluded-3.0.1.zip
|
2021-10-07 15:44:44 by Nia Alarie | Files touched by this commit (3017) |
Log message:
devel: Remove SHA1 hashes for distfiles
|
2021-05-24 21:56:06 by Thomas Klausner | Files touched by this commit (3575) |
Log message:
*: recursive bump for perl 5.34
|
2020-08-31 20:13:29 by Thomas Klausner | Files touched by this commit (3631) |
Log message:
*: bump PKGREVISION for perl-5.32.
|
2019-10-13 12:57:37 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
(devel/p5-Carp-Asset-More) Updated 1.16 to 1.20
1.20 Fri Aug 9 10:10:06 CDT 2019
[ENHANCEMENTS]
Add assert_datetime() for asserting DateTime objects.
1.18 Fri Jul 19 17:12:32 CDT 2019
[ENHANCEMENTS]
Added assert_aoh() for asserting an array of hashrefs.
|