blob: c126a708facc78311d1a22ef573ad801afa7ee45 [file] [log] [blame]
use Mojo::Base -strict;
use lib '../lib', 'lib';
use Test::More;
use Test::Mojo;
my $t = Test::Mojo->new('Korap');
$t->get_ok('/')
->status_is(200)
->text_is('title', 'KorAP')
->text_like('h1 span', qr/Korpusanalyseplattform/i)
;
done_testing();