The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -Tw

use warnings;
use strict;

use Test::More tests => 3;
use Test::HTML::Lint;

BEGIN {
    use_ok( 'Test::HTML::Lint' );
}

my $chunk = '<html><head></head><body><title>A fine chunk of code</title></body></html>';

TODO: { # undef should fail
    local $TODO = "This test should NOT succeed";
    html_ok( undef );
}
html_ok( $chunk );