Fix FormFu in 5.80 + test, zamolxes++
[catagits/Catalyst-Runtime.git] / t / caf_backcompat.t
1 use strict;
2 use warnings;
3 use Test::More tests => 1;
4 use Test::Exception;
5 use Catalyst::Action;
6
7 my $action=Catalyst::Action->new({foo=>'bar'});
8
9 is $action->{foo}, 'bar', 'custom Action attribute';