This repository has been archived on 2023-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Foodloop-Server/t/basic.t

10 lines
203 B
Perl

use Test::More;
use Test::Mojo;
use FindBin;
require "$FindBin::Bin/../foodloopserver.pl";
my $t = Test::Mojo->new;
$t->get_ok('/login')->status_is(200)->content_like(qr/login page/);
done_testing();