[Python-checkins] CVS: python/dist/src/Lib/test test_cookie.py,1.7,1.8

A.M. Kuchling akuchling@users.sourceforge.net
Tue, 20 Feb 2001 17:17:56 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory usw-pr-cvs1:/tmp/cvs-serv26331

Modified Files:
	test_cookie.py 
Log Message:
Added test for patch #103473: test an unquoted cookie value containing '='


Index: test_cookie.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_cookie.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** test_cookie.py	2001/01/17 21:51:36	1.7
--- test_cookie.py	2001/02/21 01:17:54	1.8
***************
*** 11,14 ****
--- 11,17 ----
      ('keebler="E=mc2; L=\\"Loves\\"; fudge=\\012;";',
       {'keebler' : 'E=mc2; L="Loves"; fudge=\012;'}),
+ 
+     # Check illegal cookies that have an '=' char in an unquoted value
+     ('keebler=E=mc2;', {'keebler' : 'E=mc2'})
      ]