975eda2dd65bd917e19b9e187e2325e196c1c076
[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';