Update TODO to be current, bump deps to latest versions for better back compat/better doc
[catagits/Catalyst-Runtime.git] / t / caf_backcompat_plugin_accessor_override.t
CommitLineData
8716efe7 1use strict;
2use warnings;
3use lib 't/lib';
4
5use Test::More tests => 1;
6use Test::Exception;
7
8# Force a stack trace.
9use Carp;
10$SIG{__DIE__} = \&Carp::confess;
11
12{
13 package CAFCompatTestApp;
14 use Catalyst qw/
15 +CAFCompatTestPlugin
16 /;
17}
18
19TODO: {
20 local $TODO = 'The overridden setup in CAFCompatTestApp + the overridden accessor causes destruction';
21 lives_ok {
22 CAFCompatTestApp->setup;
23 } 'Setup app with plugins which says use base qw/Class::Accessor::Fast/';
24}