diff --git a/Changes b/Changes index f8d91bb..0f3affc 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,7 @@ Revision history for Mojolicious::Plugin::TtRenderer {{$NEXT}} + - Added diagnostic for IO loop implementation in testing 1.39 January 28, 2013 - Documentation updates. diff --git a/t/01-ioloop.t b/t/01-ioloop.t new file mode 100644 index 0000000..46aac73 --- /dev/null +++ b/t/01-ioloop.t @@ -0,0 +1,11 @@ +use strict; +use warnings; +use Test::More tests => 1; +use Mojo::IOLoop; + +my $loop = eval { Mojo::IOLoop->singleton }; +diag $@ if $@; +ok $loop; +diag ref eval { $loop->reactor }; +diag $@ if $@; +