Skip to content

Commit

Permalink
add blank param test case
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Nov 6, 2023
1 parent a653047 commit a3351d9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,7 @@ def args(self):
[PyramidRequest, WerkzeugRequest, PseudoRequest, BadQueryStringTypeRequest],
[
("", {}),
("param=", {"param": ""}),
("param=value", {"param": "value"}),
("param=val1,val2", {"param": "val1,val2"}),
("param1=val1,val2&param2=val3", {"param1": "val1,val2", "param2": "val3"}),
Expand Down

0 comments on commit a3351d9

Please sign in to comment.