diff options
Diffstat (limited to 'Lib/test/output')
-rw-r--r-- | Lib/test/output/test_cgi | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/output/test_cgi b/Lib/test/output/test_cgi index 3741c22..d5d6f75 100644 --- a/Lib/test/output/test_cgi +++ b/Lib/test/output/test_cgi @@ -1,4 +1,15 @@ test_cgi +'' => [] +'&' => [] +'&&' => [] +'=' => [('', '')] +'=a' => [('', 'a')] +'a' => [('a', '')] +'a=' => [('a', '')] +'a=' => [('a', '')] +'&a=b' => [('a', 'b')] +'a=a+b&b=b+c' => [('a', 'a b'), ('b', 'b c')] +'a=1&a=2' => [('a', '1'), ('a', '2')] '' '&' '&&' |