have the std test suite exercise the Cookie doctests too.
// end hiding -->
</script>
+If anything blows up after this line, it's from Cookie's doctest.
from test_support import verify
import Cookie
from test_support import verify, verbose
+import doctest
# Currently this only tests SimpleCookie
verify(C['Customer'].value == 'WILE_E_COYOTE')
verify(C['Customer']['version'] == '1')
verify(C['Customer']['path'] == '/acme')
+
+print "If anything blows up after this line, it's from Cookie's doctest."
+doctest.testmod(Cookie)