The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl
use strict;
use warnings;
use HTML::RewriteAttributes::Links;
use Test::More tests => 1;

my $html = << "END";
<html>
    <body>
        <img src="moose.jpg" />
        <img src="http://example.com/nethack.png">
        <a href="Example.html">Example</a>
        <p align="justified" style="color: red">
            hooray
        </p>
    </body>
</html>
END

my $rewrote = HTML::RewriteAttributes::Links->rewrite($html, "http://cpan.org");

is($rewrote, << "END", "rewrote the html correctly");
<html>
    <body>
        <img src="http://cpan.org/moose.jpg" />
        <img src="http://example.com/nethack.png">
        <a href="http://cpan.org/Example.html">Example</a>
        <p align="justified" style="color: red">
            hooray
        </p>
    </body>
</html>
END