X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcaf_backcompat.t;fp=t%2Fcaf_backcompat.t;h=975eda2dd65bd917e19b9e187e2325e196c1c076;hb=241edc9b196ed1d8366b0011c814b0c2d9357516;hp=0000000000000000000000000000000000000000;hpb=b99ff5d87e80f13652bf374e2ce8f10c7156ac6e;p=catagits%2FCatalyst-Runtime.git diff --git a/t/caf_backcompat.t b/t/caf_backcompat.t new file mode 100644 index 0000000..975eda2 --- /dev/null +++ b/t/caf_backcompat.t @@ -0,0 +1,9 @@ +use strict; +use warnings; +use Test::More tests => 1; +use Test::Exception; +use Catalyst::Action; + +my $action=Catalyst::Action->new({foo=>'bar'}); + +is $action->{foo}, 'bar', 'custom Action attribute';