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

17 lines
287 B
Perl
Raw Normal View History

use Mojo::Base -strict;
2017-01-31 13:53:24 +00:00
2017-08-31 12:20:24 +00:00
use FindBin qw/ $Bin /;
use Test::More;
use Test::Pear::LocalLoop;
2017-08-31 12:20:24 +00:00
my $framework = Test::Pear::LocalLoop->new(
etc_dir => "$Bin/etc",
);
$framework->install_fixtures('users');
2017-08-31 12:20:24 +00:00
my $t = $framework->framework;
$t->get_ok('/')->status_is(200);
2017-01-31 13:53:24 +00:00
done_testing();