diff options
author | Georg Brandl <georg@python.org> | 2006-10-29 19:51:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-10-29 19:51:16 (GMT) |
commit | a962eb32d98a1dae1f0c31623832a48725f3d6e0 (patch) | |
tree | eb223afaa1e85937f054017ec65996e0c3bdc00e /Lib/test/output | |
parent | bd0fb14e5135781e671cede114f22cc10d1a6121 (diff) | |
download | cpython-a962eb32d98a1dae1f0c31623832a48725f3d6e0.zip cpython-a962eb32d98a1dae1f0c31623832a48725f3d6e0.tar.gz cpython-a962eb32d98a1dae1f0c31623832a48725f3d6e0.tar.bz2 |
Convert test_cookie to unittest.
Diffstat (limited to 'Lib/test/output')
-rw-r--r-- | Lib/test/output/test_cookie | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/Lib/test/output/test_cookie b/Lib/test/output/test_cookie deleted file mode 100644 index 95c7328..0000000 --- a/Lib/test/output/test_cookie +++ /dev/null @@ -1,32 +0,0 @@ -test_cookie -<SimpleCookie: chips='ahoy' vienna='finger'> -Set-Cookie: chips=ahoy -Set-Cookie: vienna=finger - chips 'ahoy' 'ahoy' -Set-Cookie: chips=ahoy - vienna 'finger' 'finger' -Set-Cookie: vienna=finger -<SimpleCookie: keebler='E=mc2; L="Loves"; fudge=\n;'> -Set-Cookie: keebler="E=mc2; L=\"Loves\"; fudge=\012;" - keebler 'E=mc2; L="Loves"; fudge=\n;' 'E=mc2; L="Loves"; fudge=\n;' -Set-Cookie: keebler="E=mc2; L=\"Loves\"; fudge=\012;" -<SimpleCookie: keebler='E=mc2'> -Set-Cookie: keebler=E=mc2 - keebler 'E=mc2' 'E=mc2' -Set-Cookie: keebler=E=mc2 -Set-Cookie: Customer="WILE_E_COYOTE"; Path=/acme - - <script type="text/javascript"> - <!-- begin hiding - document.cookie = "Customer="WILE_E_COYOTE"; Path=/acme; Version=1"; - // end hiding --> - </script> - - - <script type="text/javascript"> - <!-- begin hiding - document.cookie = "Customer="WILE_E_COYOTE"; Path=/acme"; - // end hiding --> - </script> - -If anything blows up after this line, it's from Cookie's doctest. |