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

9 lines
175 B
Perl
Raw Normal View History

2017-01-31 13:53:24 +00:00
use Test::More;
use Test::Mojo;
use FindBin;
2017-02-24 19:27:43 +00:00
my $t = Test::Mojo->new("Pear::LocalLoop");
$t->get_ok('/login')->status_is(200)->content_like(qr/login page/);
2017-01-31 13:53:24 +00:00
done_testing();