where the default COMPILE_DIR already exists and is owned by another user or not writable for some other reason by the testing user.
32 lines
664 B
Perl
32 lines
664 B
Perl
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
BEGIN { $ENV{MOJO_MODE}='testing'; };
|
|
|
|
use utf8;
|
|
|
|
use Test::More tests => 6;
|
|
|
|
use Mojolicious::Lite;
|
|
use Test::Mojo;
|
|
use File::Temp qw( tempdir );
|
|
|
|
# Silence
|
|
app->log->level('fatal');
|
|
|
|
my @paths = map { app->home->rel_dir($_) } "templates/multiple_first", "templates/multiple_second";
|
|
app->renderer->paths([@paths]);
|
|
|
|
plugin 'TtRenderer' => {template_options => { COMPILE_DIR => tempdir( CLEANUP => 1 ) }};
|
|
|
|
get '/first' => 'first';
|
|
get '/second' => 'second';
|
|
|
|
my $t = Test::Mojo->new;
|
|
|
|
$t->get_ok('/first')->status_is(200)->content_like(qr/First/);
|
|
$t->get_ok('/second')->status_is(200)->content_like(qr/Second/);
|
|
|