| my $t = Test::Mojo->new('Kalamar'); |
| $t->app->mode('production'); |
| ->text_is('title', 'KorAP - Corpus Analysis Platform') |
| ->text_is('h1 span', 'KorAP - Corpus Analysis Platform') |
| ->element_exists('div.intro') |
| ->text_is('div.intro > p > strong', 'KorAP') |
| push @{$t->app->renderer->paths}, path(path(__FILE__)->dirname); |
| $t->app->plugin(Localize => { |
| ->text_is('title', 'KorAP - Corpus Analysis Platform') |
| ->text_is('h1 span', 'KorAP - Corpus Analysis Platform') |
| ->element_exists('div.intro') |
| ->text_is('div.intro h2', 'This is a custom intro page!') |
| ->element_exists('meta[name="DC.description"][content="KorAP - Corpus Analysis Platform"]') |
| ->element_exists('meta[name="keywords"][content^="KorAP"]') |
| ->element_exists('body[itemscope][itemtype="http://schema.org/WebApplication"]') |
| $t->get_ok('/huhuhuhuhu') |
| ->text_is('title', 'KorAP: 404 - Page not found') |
| ->text_is('h1 span', 'KorAP: 404 - Page not found'); |