summaryrefslogtreecommitdiff
path: root/Lib/test/test_cgi.py
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-09-09 02:43:19 +0000
committerFacundo Batista <facundobatista@gmail.com>2008-09-09 02:43:19 +0000
commita27244bfa13ed7e0efd0d0fd2dd6a553fbb08124 (patch)
tree3bc30bfbe80a939a298253cc4311076a4e101453 /Lib/test/test_cgi.py
parent1cd0247a4d1b8282631707ba06b514aeddc75782 (diff)
downloadcpython-git-a27244bfa13ed7e0efd0d0fd2dd6a553fbb08124.tar.gz
Added a warning filter to don't show the warning during
the tests. Also fixed the warning message in cgi.py
Diffstat (limited to 'Lib/test/test_cgi.py')
-rw-r--r--Lib/test/test_cgi.py17
1 files changed, 13 insertions, 4 deletions
diff --git a/Lib/test/test_cgi.py b/Lib/test/test_cgi.py
index 9491001bb4..0c53d8f096 100644
--- a/Lib/test/test_cgi.py
+++ b/Lib/test/test_cgi.py
@@ -5,6 +5,7 @@ import sys
import tempfile
import unittest
from io import StringIO
+from warnings import catch_warnings, filterwarnings
class HackedSysModule:
# The regression test will have real values in sys.argv, which
@@ -308,13 +309,21 @@ this is the content of the fake file
def test_deprecated_parse_qs(self):
# this func is moved to urlparse, this is just a sanity check
- self.assertEqual({'a': ['A1'], 'B': ['B3'], 'b': ['B2']},
- cgi.parse_qs('a=A1&b=B2&B=B3'))
+ with catch_warnings():
+ filterwarnings('ignore',
+ 'cgi.parse_qs is deprecated, use urllib.parse.parse_qs instead',
+ DeprecationWarning)
+ self.assertEqual({'a': ['A1'], 'B': ['B3'], 'b': ['B2']},
+ cgi.parse_qs('a=A1&b=B2&B=B3'))
def test_deprecated_parse_qsl(self):
# this func is moved to urlparse, this is just a sanity check
- self.assertEqual([('a', 'A1'), ('b', 'B2'), ('B', 'B3')],
- cgi.parse_qsl('a=A1&b=B2&B=B3'))
+ with catch_warnings():
+ filterwarnings('ignore',
+ 'cgi.parse_qsl is deprecated, use urllib.parse.parse_qsl instead',
+ DeprecationWarning)
+ self.assertEqual([('a', 'A1'), ('b', 'B2'), ('B', 'B3')],
+ cgi.parse_qsl('a=A1&b=B2&B=B3'))
def test_main():
run_unittest(CgiTests)