1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
use Mojo::Base -strict;
BEGIN { $ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll' }
use Test::Mojo;
use Test::More;
use Mojolicious::Lite;
# More paths with higher precedence
unshift @{app->renderer->paths}, app->home->child('templates2');
unshift @{app->static->paths}, app->home->child('public2');
get '/twenty_three' => '23';
get '/fourty_two' => '42';
get '/fourty_two_again' => {template => '42', variant => 'test'};
get '/yada' => {template => 'foo/yada'};
my $t = Test::Mojo->new;
# "templates" directory
$t->get_ok('/twenty_three')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->content_is("23\n");
# "templates2" directory
$t->get_ok('/fourty_two')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')
->content_is("The answer is 42.\n");
# "templates2" directory (variant)
$t->get_ok('/fourty_two_again')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')
->content_is("The answer is 43!\n");
# "public2" directory
$t->get_ok('/hello.txt')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')
->content_is("Also higher precedence!\n");
# "public" directory
$t->get_ok('/hello2.txt')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')->content_is("X");
# "public2" directory
$t->get_ok('/hello3.txt')->status_is(200)
->header_is(Server => 'Mojolicious (Perl)')
->content_is("Hello Mojo from... ALL GLORY TO THE HYPNOTOAD!\n");
# "templates2" directory
$t->get_ok('/yada')->status_is(200)->header_is(Server => 'Mojolicious (Perl)')
->content_is("Higher precedence!\n");
done_testing();
|