From 514a1028a20b4a818aa1f75dd674c5ee78a2f5ae Mon Sep 17 00:00:00 2001 From: Moshe Zadka Date: Sat, 19 Aug 2000 15:57:33 +0000 Subject: Adding tests of the "attrs" optional argument, and of the js_output functionality. --- Lib/test/test_cookie.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Lib/test/test_cookie.py') diff --git a/Lib/test/test_cookie.py b/Lib/test/test_cookie.py index e5c2592fdd..9ae009d73a 100644 --- a/Lib/test/test_cookie.py +++ b/Lib/test/test_cookie.py @@ -24,3 +24,8 @@ C.load('Customer="WILE_E_COYOTE"; Version=1; Path=/acme') assert C['Customer'].value == 'WILE_E_COYOTE' assert C['Customer']['version'] == '1' assert C['Customer']['path'] == '/acme' + +print C.output(['path']) +print C.js_output() +print C.js_output(['path']) + -- cgit v1.2.1