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

Moshe Zadka python-dev@python.org
Sat, 19 Aug 2000 08:57:35 -0700


Update of /cvsroot/python/python/dist/src/Lib/test
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5727/Lib/test

Modified Files:
	test_cookie.py 
Log Message:
Adding tests of the "attrs" optional argument, and of the js_output
functionality.


Index: test_cookie.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_cookie.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** test_cookie.py	2000/08/19 15:21:11	1.1
--- test_cookie.py	2000/08/19 15:57:32	1.2
***************
*** 25,26 ****
--- 25,31 ----
  assert C['Customer']['version'] == '1'
  assert C['Customer']['path'] == '/acme'
+ 
+ print C.output(['path'])
+ print C.js_output()
+ print C.js_output(['path'])
+