Trivial tests of urllib2 for recent SF bug

This commit is contained in:
Jeremy Hylton 2001-05-09 15:50:25 +00:00
parent c116b82b77
commit e3e61049a5
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1 @@
test_urllib2

17
Lib/test/test_urllib2.py Normal file
View File

@ -0,0 +1,17 @@
from test_support import verify
import urllib2
# A couple trivial tests
try:
urllib2.urlopen('bogus url')
except ValueError:
pass
else:
verify(0)
file_url = "file://%s" % urllib2.__file__
f = urllib2.urlopen(file_url)
buf = f.read()
f.close()