mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-10 17:45:35 +00:00
Added support and tests for the Requests library. At least basic support seems to be working. The tests should run fine if you don't have requests installed; it just won't verify the requests- specific tests.
8 lines
238 B
Python
8 lines
238 B
Python
from requests.packages.urllib3.connectionpool import VerifiedHTTPSConnection
|
|
from .stubs import VCRHTTPSConnection
|
|
|
|
class VCRVerifiedHTTPSConnection(VCRHTTPSConnection, VerifiedHTTPSConnection):
|
|
|
|
_baseclass = VerifiedHTTPSConnection
|
|
|