Subject: | Fails with bleadperl >= v5.16.0-235-g417a992 |
As per subject.
Sample fail report:
http://www.cpantesters.org/cpan/report/d5d8ebb4-0239-11e2-ace9-1f037ed9fe3d
The commit that made all these tests fail is:
http://perl5.git.perl.org/perl.git/commitdiff/417a992d4dc78be79e44d19e029d9742d0334128
It forbid lines like this:
for my $operation qw(list create read update delete) {
which I found in
https://metacpan.org/source/TAKERU/Catalyst-Controller-Atompub-0.5.4/lib/Catalyst/Controller/Atompub/Collection.pm#L138
This now needs an extra pair of parens:
for my $operation (qw(list create read update delete)) {
HTH&&Thanks&&Regards,