blob: 9e0cf8c17accc1e1f048498f36b24ad99701ce4c [file] [log] [blame] [edit]
# Check that we can import urllib3 even if we don't use all of it:
import urllib3
# Just check that we can create a PoolManager:
http = urllib3.PoolManager()
# Check if we can normalize URLs:
assert urllib3.util.url.parse_url("HTTPS://Example.Com/?Key=Value").url \
== "https://example.com/?Key=Value"