This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Foodloop-Server/t/basic.t
2017-04-24 17:42:07 +01:00

16 lines
241 B
Perl

use Mojo::Base -strict;
use Test::More;
use Test::Mojo;
use FindBin;
BEGIN {
$ENV{MOJO_MODE} = 'testing';
$ENV{MOJO_LOG_LEVEL} = 'debug';
}
my $t = Test::Mojo->new("Pear::LocalLoop");
$t->get_ok('/')->status_is(200);
done_testing();