Skip Menu |

This queue is for tickets about the Test-Functional CPAN distribution.

Report information
The Basics
Id: 52673
Status: new
Priority: 0/
Queue: Test-Functional

People
Owner: Nobody in particular
Requestors: NCLEATON [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.05
Fixed in: (no value)



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".