Fix FormFu in 5.80 + test, zamolxes++
[catagits/Catalyst-Runtime.git] / t / caf_backcompat.t
diff --git a/t/caf_backcompat.t b/t/caf_backcompat.t
new file mode 100644 (file)
index 0000000..975eda2
--- /dev/null
@@ -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';