This file ( 498B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
use Test::WWW::Mechanize;
use LWP::Protocol::PSGI;
use Test::More import => ['!pass']; # tests => 3;
use RequestForm::Test;
use RequestForm;
my $psgi_app = RequestForm::runner()->psgi_app;
LWP::Protocol::PSGI->register($psgi_app);
my $mech = Test::WWW::Mechanize->new;
my $args = form_tokens(); # warn $args;
$mech->get_ok(
"http://localhost/?$args",
'OK: route handler is defined for /',
); # print_output($mech);
done_testing;