Skip to content

Commit

Permalink
Add tests for associative and integer-indexed array parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Sep 14, 2024
1 parent f408a9e commit 2f51d0e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/php/web/unittest/RequestTest.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ private function parameters() {
['fixture=b', 'b'],
['fixture[]=b', ['b']],
['fixture[][]=b', [['b']]],
['fixture[a]=b', ['a' => 'b']],
['fixture[0][]=b&fixture[0][]=c', [['b', 'c']]],
['fixture=%2F', '/'],
['fixture=%2f', '/'],
['fixture=%fc', 'ü'],
Expand Down

0 comments on commit 2f51d0e

Please sign in to comment.