The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
use warnings;
use strict;
use lib ('lib');
use Test::More 'no_plan';
use Petal;

$Petal::BASE_DIR     = './t/data/';
$Petal::DISK_CACHE   = 0;
$Petal::MEMORY_CACHE = 0;
$Petal::DECODE_CHARSET = 'UTF-8';
$Petal::ENCODE_CHARSET = 'UTF-8';
$Petal::MEMORY_CACHE = 0;
$Petal::TAINT        = 1;
$Petal::INPUT        = 'XHTML';

ok (1);
if ($] > 5.007)
{
    # die ${ Petal->new ('entities.html')->_canonicalize() };
    my $string = Petal->new ( 'entities.html' )->process();
    like ($string, qr/\x{00a9}/ => 'Copyright');
    like ($string, qr/\x{00ae}/ => 'Registered');
    like ($string, qr/\x{00a0}/ => 'NBSP');
}