The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use lib qw( ./lib ../lib );

use Test::More;
use Cwd;
use CSS::Inliner;

plan(tests => 6);

use_ok('CSS::Inliner');

my $html = <<END;
<html>
  <head>
    <!-- retain this comment -->
    <title>Test Document</title>
    <style type="text/css">
    h1 { color: red; font-size: 20px }
    h2 { color: blue; font-size: 17px; }
    </style>
  </head>
  <body>
    <h1>Howdy!</h1>
    <h2>Let's Play</h2>
    <p>Got any games?</p>
  </body>
</html>
END

my $inliner = CSS::Inliner->new();
$inliner->read({html => $html});
my $inlined = $inliner->inlinify();

ok($inlined =~ m/\<!-- retain this comment --\>/, 'comment retained');
ok($inlined =~ m/<h1 style="color: red; font-size: 20px;">Howdy!<\/h1>/, 'h1 rule inlined');
ok($inlined =~ m/<h2 style="color: blue; font-size: 17px;">Let's Play<\/h2>/, 'h2 rule inlined');
ok($inlined =~ m/<p>Got any games\?<\/p>/, 'p not styled');
ok($inlined !~ m/<style/, 'no style blocks left');