depend on workaround for issue during global destruction in t/live_fork.t (see also...
[catagits/Catalyst-Runtime.git] / t / aggregate / error_page_dump.t
CommitLineData
1565e158 1use strict;
2use warnings;
3use Test::More;
4use Test::Exception;
5
6use Catalyst::Engine;
7
8my $m = sub { Catalyst::Engine->_dump_error_page_element(@_) };
9
10lives_ok { $m->('Scalar' => ['foo' => 'bar']) };
11lives_ok { $m->('Array' => ['foo' => []]) };
12lives_ok { $m->('Hash' => ['foo' => {}]) };
13
14done_testing;
15