Skip to content

Instantly share code, notes, and snippets.

View Ivan-Feofanov's full-sized avatar
🐢

Ivan Feofanov Ivan-Feofanov

🐢
View GitHub Profile
@mykwillis
mykwillis / test_thing.py
Last active April 4, 2018 10:58 — forked from jamielennox/test_thing.py
requests_mock and pytest
import thing
import pytest
import requests_mock as rm_module
@pytest.fixture
def requests_mock(request):
with rm_module.Mocker() as m:
yield m