Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the URI-Find CPAN distribution.

Report information
The Basics
Id: 87454
Status: new
Priority: 0/
Queue: URI-Find

People
Owner: Nobody in particular
Requestors: cpan [...] kurianja.fastmail.fm
Cc:
AdminCc:

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



Subject: URI::Find corrupts input
Date: Tue, 30 Jul 2013 23:48:28 +0530
To: bug-URI-Find [...] rt.cpan.org
From: Kurian Jose Aerthail <cpan [...] kurianja.fastmail.fm>
URI::Find appears to corrupt the input in the below test case: ----------------- use Test::More qw(no_plan); use URI::Find; my $txt = << 'EOF' ; Begin< Test :-) Show quoted text
>End
EOF my $expected = $txt; my $finder = URI::Find->new(sub { die; }); $finder->find(\$txt); is($txt, $expected); ------------------------ Thanks! Kurian