blob: 0bbc09e0a0307909bd3941c6d6182c352b07b818 [file] [log] [blame]
use Mojo::Base -strict;
use Test::More;
use Test::Mojo;
use Mojo::File qw/path/;
my $t = Test::Mojo->new('Kalamar');
$t->app->mode('production');
$t->get_ok('/')
->status_is(200)
->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 => {
dict => {
Template => {
intro => 'custom/intro'
}
},
override => 1
});
$t->get_ok('/')
->status_is(200)
->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!');
$t->get_ok('/huhuhuhuhu')
->status_is(404)
->text_is('title', 'KorAP: 404 - Page not found')
->text_is('h1 span', 'KorAP: 404 - Page not found');
done_testing();