summaryrefslogtreecommitdiff
path: root/t/01-basic.t
blob: da7b654dd3ee50d310b9867dfe2817762908870e (plain)
1
2
3
4
5
6
7
8
9
10
use Test::More;
use Test::Mojo;

use FindBin;
require "$FindBin::Bin/../index.pl";

my $t = Test::Mojo->new;
$t->get_ok('/')->status_is(200)->content_like(qr/db-infoscreen/);

done_testing();