The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
123456789101112131415 #!/usr/bin/perl# Load test the HTML::Location moduleuse strict;BEGIN { $| = 1; $^W = 1;}use Test::More tests => 2;ok( $] >= 5.005, 'Your perl is new enough' );use_ok( 'HTML::Location' );
#!/usr/bin/perl
# Load test the HTML::Location module
use
strict;
BEGIN {
$| = 1;
$^W = 1;
}
Test::More
tests
=> 2;
ok( $] >= 5.005,
'Your perl is new enough'
);
use_ok(
'HTML::Location'