NAME
Test::Able::Method::Array - Test-related method list
DESCRIPTION
This only exists, as a convenience, to provide overriding in a hash context. Instead of having to do this:
my
(
$m
) =
grep
{
$_
->name eq
'test_on_x_and_y_and_z'
;
} @{
$t
->meta->test_methods };
one can do this:
my
$m
=
$t
->meta->test_methods->{
'test_on_x_and_y_and_z'
};
AUTHOR
Justin DeVuyst, justin@devuyst.com
COPYRIGHT AND LICENSE
Copyright 2009 by Justin DeVuyst.
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.