blob: 61c02d6db831a7c2b2f8a403cb9bb9fb5c4a7dc2 [file] [log] [blame]
Akron9490e3b2019-10-17 12:26:29 +02001use Mojo::Base -strict;
2use Test::More;
3use Test::Mojo;
4
5# Test the documentation
6
7my $t = Test::Mojo->new('Kalamar');
8
9my $app = $t->app;
10
11is($app->under_construction, '<p>Under Construction!</p>');
12
13is($app->embedded_link_to('privacy', 'privacy'), '<a class="embedded-link" href="/doc/privacy">privacy</a>');
14is($app->embedded_link_to('privacy', 'korap', 'privacy'), '<a class="embedded-link" href="/doc/korap/privacy">privacy</a>');
15
16
17my $c = $app->build_controller;
18$c->title('Example');
19is($c->page_title, '<h2 id="page-top">Example</h2>');
20
21done_testing;
22
231;