aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/req_SUITE.erl2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/req_SUITE.erl b/test/req_SUITE.erl
index b0aabad..9ea08b3 100644
--- a/test/req_SUITE.erl
+++ b/test/req_SUITE.erl
@@ -161,6 +161,8 @@ match_qs(Config) ->
<<"#{a => <<\"b\">>}">> = do_get_body("/match/qs/a?a=b&c=d", Config),
<<"#{c => <<\"d\">>}">> = do_get_body("/match/qs/c?a=b&c=d", Config),
<<"#{a => <<\"b\">>,c => <<\"d\">>}">> = do_get_body("/match/qs/a/c?a=b&c=d", Config),
+ <<"#{a => <<\"b\">>,c => true}">> = do_get_body("/match/qs/a/c?a=b&c", Config),
+ <<"#{a => true,c => <<\"d\">>}">> = do_get_body("/match/qs/a/c?a&c=d", Config),
%% This function is tested more extensively through unit tests.
ok.