diff options
Diffstat (limited to 't/01-basic.t')
-rw-r--r-- | t/01-basic.t | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/t/01-basic.t b/t/01-basic.t index 4f471b0..f55633a 100644 --- a/t/01-basic.t +++ b/t/01-basic.t @@ -1,3 +1,8 @@ +#!/usr/bin/env perl +# Copyright (C) 2020 Birte Kristina Friesel +# +# SPDX-License-Identifier: CC0-1.0 + use Test::More; use Test::Mojo; @@ -5,6 +10,6 @@ use FindBin; require "$FindBin::Bin/../index.pl"; my $t = Test::Mojo->new('DBInfoscreen'); -$t->get_ok('/')->status_is(200)->content_like(qr/db-infoscreen/); +$t->get_ok('/')->status_is(200)->content_like(qr/DBF/); done_testing(); |