Compare commits

...
Author SHA1 Message Date
Graham Ollis f68a82f774 v1.42
- fix for test on solaris
2013-02-24 22:59:45 -05:00
Graham Ollis cb908430e5 fix it again. 2013-02-24 22:59:10 -05:00
Graham Ollis 7cd976ea79 v1.41
- Additional testing diagnostics
2013-02-23 03:06:21 -05:00
Graham Ollis 1708622c49 testing diagnostics 2013-02-23 03:05:25 -05:00
2 changed files with 13 additions and 4 deletions
+6
View File
@@ -2,6 +2,12 @@ Revision history for Mojolicious::Plugin::TtRenderer
{{$NEXT}}
1.42 February 24, 2013
- fix for test on solaris
1.41 February 23, 2013
- Additional testing diagnostics
1.40 February 20, 2013
- Added diagnostic for IO loop implementation in testing
+7 -4
View File
@@ -6,7 +6,7 @@ use Test::More tests => 6;
use Test::Mojo;
use Mojolicious::Lite;
plugin 'tt_renderer';
plugin 'tt_renderer' => { template_options => { COMPILE_DIR => tempdir( CLEANUP => 1 ) } };
app->renderer->default_handler('tt');
get '/' => sub {
@@ -21,11 +21,14 @@ $t->get_ok('/')
->status_is(500)
->content_like(qr{foo});
$t->app->log->on(message => sub {
my($log, $level, @lines) = @_;
diag @lines if $level eq 'error';
});
$t->get_ok('/bar')
->status_is(200)
->content_like(qr{bar});
#note $t->tx->res->to_string;
->content_like(qr{sometimes, the bar,});
__DATA__