Compare commits
3 Commits
release/1.
...
release/1.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5e7728270f | ||
|
|
7618cacaa4 | ||
|
|
80340f9950 |
6
Changes
6
Changes
@@ -1,6 +1,12 @@
|
||||
Revision history for Mojolicious::Plugin::TtRenderer
|
||||
|
||||
{{$NEXT}}
|
||||
- Include META.json in distribution.
|
||||
|
||||
1.33 December 27, 2012
|
||||
- Fix hang in t/deep_recursion.t on *BSD
|
||||
|
||||
1.32 December 27, 2012
|
||||
- silenced a few annoying warnings during test
|
||||
- use temp directory for COMPILE_DIR in tests to avoid failures if the
|
||||
default compile directory already exists and is owned by someone else.
|
||||
|
||||
2
dist.ini
2
dist.ini
@@ -55,3 +55,5 @@ location = root
|
||||
format = %-7v %{MMMM d, yyyy}d
|
||||
|
||||
[MinimumPerl]
|
||||
|
||||
[MetaJSON]
|
||||
|
||||
@@ -11,12 +11,14 @@ use Test::More tests => 3;
|
||||
|
||||
use Mojolicious::Lite;
|
||||
use Test::Mojo;
|
||||
use File::Temp qw( tempdir tempfile );
|
||||
use File::Temp qw( tempdir );
|
||||
use File::Spec;
|
||||
|
||||
my($fh_log,$filename_log) = tempfile('fooXXXXX', TMPDIR => 1, UNLINK => 1);
|
||||
# Silence
|
||||
# Send log to tmp file so that it doesn't clutter up the screen.
|
||||
app->log->level('fatal');
|
||||
app->log->path($filename_log);
|
||||
app->log->path(do {
|
||||
File::Spec->catfile(tempdir(CLEANUP => 1), 'mojo.log');
|
||||
});
|
||||
|
||||
plugin 'tt_renderer' => {template_options => { COMPILE_DIR => tempdir( CLEANUP => 1 ) }};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user