mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-10 01:25:34 +00:00
unused imports.
This commit is contained in:
@@ -1,18 +1,17 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
'''Test requests' interaction with vcr'''
|
'''Test requests' interaction with vcr'''
|
||||||
|
|
||||||
# coding=utf-8
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
import vcr
|
import vcr
|
||||||
from assertions import assert_cassette_empty, assert_is_json
|
from assertions import assert_cassette_empty, assert_is_json
|
||||||
|
|
||||||
|
|
||||||
requests = pytest.importorskip("requests")
|
requests = pytest.importorskip("requests")
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(params=["https", "http"])
|
@pytest.fixture(params=["https", "http"])
|
||||||
def scheme(request):
|
def scheme(request):
|
||||||
"""
|
'''Fixture that returns both http and https.'''
|
||||||
Fixture that returns both http and https
|
|
||||||
"""
|
|
||||||
return request.param
|
return request.param
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user