The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
plan tests => 3, have_lwp;
{
my $body = GET_BODY "/test.html";
ok($body, qr/It's a module/);
}
{
my $body = GET_BODY "/test.html.js";
ok($body, qr/document\.writeln/);
ok($body, qr/It's a module/);
}