blob: b761fba67fa9273296f05835025849b807c01c28 [file] [log] [blame]
Akron1419aad2021-09-22 18:45:44 +02001use Mojo::Base -strict;
2use Test::More;
3use Test::Mojo;
4
5# Test the documentation
6my $t = Test::Mojo->new('Kalamar' => {
7 Kalamar => {
8 plugins => ['DemoServer']
9 }
10});
11
12$t->get_ok('/demo/all.html')
13 ->status_is(200)
14 ->content_type_is('text/html;charset=UTF-8')
15 ->text_is('title', 'Complete Demo')
16 ;
17
18$t->get_ok('/demo/alldemo.js')
19 ->status_is(200)
20 ->content_type_is('application/javascript')
21 ->content_like(qr!'app/en'!)
22 ;
Leo Repp57997402021-08-18 16:37:52 +020023
Akron1419aad2021-09-22 18:45:44 +020024done_testing;
25__END__