commit | 034ea70c7cd0b6b20e5e736b9d8d27333e9cc9c3 | [log] [tgz] |
---|---|---|
author | Nils Diewald <nils@diewald-online.de> | Fri Jan 16 19:41:52 2015 +0000 |
committer | Nils Diewald <nils@diewald-online.de> | Fri Jan 16 19:41:52 2015 +0000 |
tree | 948a0f1b7cd95fd663dde2483eafeeba8a456450 | |
parent | 6ac292b04bae5e9e5bdf8e0e503a4b221cc66160 [diff] [blame] |
Fixed paging bug in second frontend
diff --git a/t/basic.t b/t/basic.t index b24e2c0..c126a70 100644 --- a/t/basic.t +++ b/t/basic.t
@@ -1,11 +1,13 @@ 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) - ->content_like(qr/Go to/i); + ->text_is('title', 'KorAP') + ->text_like('h1 span', qr/Korpusanalyseplattform/i) + ; done_testing();