mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
Use extra asserts to use previously unused variables in tests, such as `cass` and `response`. Fix only pyflakes errors in docs/conf.py
10 lines
362 B
Python
10 lines
362 B
Python
from vcr.stubs import VCRHTTPSConnection
|
|
|
|
|
|
class TestVCRConnection(object):
|
|
|
|
def test_setting_of_attributes_get_propogated_to_real_connection(self):
|
|
vcr_connection = VCRHTTPSConnection('www.examplehost.com')
|
|
vcr_connection.ssl_version = 'example_ssl_version'
|
|
assert vcr_connection.real_connection.ssl_version == 'example_ssl_version'
|