diff options
author | Marc-André Lemburg <mal@egenix.com> | 2001-01-17 19:11:13 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2001-01-17 19:11:13 (GMT) |
commit | 3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e (patch) | |
tree | eea0f44df59aaaf014eb4580f1fad308e31601bf /Lib/test/test_cookie.py | |
parent | 8551dd60781f738e5e5ef4e22b6f071d27e20b50 (diff) | |
download | cpython-3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e.zip cpython-3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e.tar.gz cpython-3661908a6ac75026e4504d9f62a6ac2e2fb2ec5e.tar.bz2 |
This patch removes all uses of "assert" in the regression test suite
and replaces them with a new API verify(). As a result the regression
suite will also perform its tests in optimization mode.
Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
Diffstat (limited to 'Lib/test/test_cookie.py')
-rw-r--r-- | Lib/test/test_cookie.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Lib/test/test_cookie.py b/Lib/test/test_cookie.py index bf3e9af..8dd0f6f 100644 --- a/Lib/test/test_cookie.py +++ b/Lib/test/test_cookie.py @@ -16,15 +16,15 @@ for data, dict in cases: print str(C) for k, v in dict.items(): print ' ', k, repr( C[k].value ), repr(v) - assert C[k].value == v + verify(C[k].value == v) print C[k] C = Cookie.SimpleCookie() 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' +verify(C['Customer'].value == 'WILE_E_COYOTE') +verify(C['Customer']['version'] == '1') +verify(C['Customer']['path'] == '/acme') print C.output(['path']) print C.js_output() @@ -33,6 +33,6 @@ print C.js_output(['path']) # Try cookie with quoted meta-data C = Cookie.SimpleCookie() 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' +verify(C['Customer'].value == 'WILE_E_COYOTE') +verify(C['Customer']['version'] == '1') +verify(C['Customer']['path'] == '/acme') |