Subject: | error in synopsis |
The final block of the synopsis is:
# you can make your own comparator functions, or use existing ones.
use Test::More import => [qw(like)];
sub islike {
my ($got, $testname) = @_;
like($got, qr/cat/, $testname);
}
test { 'caterpillar' } islike(qr/cat/), 'is cat?';
... where you have "islike(qr/cat/)" on the last line, I think you
should have "\&islike".