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