1
0
Fork 0
bthlabs-jsonrpc/packages/bthlabs-jsonrpc-aiohttp/tests/conftest.py

11 lines
170 B
Python

# -*- coding: utf-8 -*-
from unittest import mock
from aiohttp.web import Request
import pytest
@pytest.fixture
def fake_request():
return mock.Mock(spec=Request)