blob: e98f48c5964e11b4c02d6712c3007f0c700e463e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import pytest
import requests_mock
from . import mock_config
@pytest.fixture(autouse=True)
def no_requests(monkeypatch):
""" Modify the response from Requests module
"""
with requests_mock.Mocker(real_http=True) as m:
mock_config.register_consul(m)
yield m
|