Tomek Wójcik
c75ea4ea9d
* `bthlabs-jsonrpc-aiohttp` v1.0.0 * `bthlabs-jsonrpc-core` v1.0.0 * `bthlabs-jsonrpc-django` v1.0.0
11 lines
170 B
Python
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)
|