App-SimpleScan

 view release on metacpan or  search on metacpan

t/50quoteescbug.t  view on Meta::CPAN

use Test::More tests=>2;
use App::SimpleScan;
my $app = new App::SimpleScan;

my $text     = qq('I am quoted with an escape\\.');
my $dequoted = qq(I am quoted with an escape\\.);
my @match = $app->expand_backticked($text);
is @match, 1, 'Should only be one result';
is $match[0], $dequoted, 'matched it right';



( run in 1.510 second using v1.01-cache-2.11-cpan-e1769b4cff6 )