diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-03-24 10:13:30 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-03-24 10:13:30 +0100 |
commit | 9792369c2b79e68cc7384bbd9b55eef30fe8c004 (patch) | |
tree | ced72989066592a9344109974480ed67e413f9ee /t/01-basic.t | |
parent | 542a1db1106aaafe16203ffdb3bbac792d17a96c (diff) |
Transition from Mojolicious::Lite to full Mojolicious app
Diffstat (limited to 't/01-basic.t')
-rw-r--r-- | t/01-basic.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/01-basic.t b/t/01-basic.t index da7b654..4f471b0 100644 --- a/t/01-basic.t +++ b/t/01-basic.t @@ -4,7 +4,7 @@ use Test::Mojo; use FindBin; require "$FindBin::Bin/../index.pl"; -my $t = Test::Mojo->new; +my $t = Test::Mojo->new('DBInfoscreen'); $t->get_ok('/')->status_is(200)->content_like(qr/db-infoscreen/); done_testing(); |