11 lines
210 B
Perl
11 lines
210 B
Perl
use Test::More;
|
|
use Mojo::File qw{curfile};
|
|
use Test::Mojo;
|
|
|
|
my $script = curfile->dirname->sibling('hr2.pl');
|
|
my $t = Test::Mojo->new($script);
|
|
|
|
$t->get_ok('/favicon.ico')->status_is(200);
|
|
|
|
done_testing;
|