mirror of
https://github.com/YunoHost-Apps/lutim_ynh.git
synced 2024-09-03 19:36:24 +02:00
9 lines
174 B
Perl
9 lines
174 B
Perl
use Mojo::Base -strict;
|
|
|
|
use Test::More;
|
|
use Test::Mojo;
|
|
|
|
my $t = Test::Mojo->new('Lutim');
|
|
$t->get_ok('/')->status_is(200)->content_like(qr/Mojolicious/i);
|
|
|
|
done_testing();
|