Skip to content

Commit

Permalink
upcase array testing (metafacture/metafacture-fix#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
blackwinter committed Apr 6, 2022
1 parent db4c0af commit 370ca93
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion t/Catmandu-Fix-upcase.t
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ is_deeply $pkg->new('names.*.name')
->fix({names => [{name => 'joe'}, {name => 'rick'}]}),
{names => [{name => 'JOE'}, {name => 'RICK'}]}, "upcase wildcard values";

done_testing 3;
is_deeply $pkg->new('data')->fix({data => ['foo', 'bar']}),
{data => ['foo', 'bar']}, "array";

done_testing 4;

0 comments on commit 370ca93

Please sign in to comment.