1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 01:25:34 +00:00

unused imports.

This commit is contained in:
Ivan Malison
2015-03-23 17:55:38 -07:00
parent c87e6d6f6a
commit 39c3b15e02

View File

@@ -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