Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Test::More tests => 5;
    ...
      ok("They're OK");
      ok("All's OK");
    };
    
  2. or download this
    SKIP: {
        eval { require HTML::Lint };
    ...
        $lint->parse( $html );
        is( $lint->errors, 0, "No errors found in HTML" );
    }