File: conftest.py

package info (click to toggle)
python-aio-georss-gdacs 0.9%2Bdfsg1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 236 kB
  • sloc: xml: 727; python: 524; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
"""Configuration for tests."""
import pytest
from aioresponses import aioresponses


@pytest.fixture
def mock_aioresponse():
    """Return aioresponse fixture."""
    with aioresponses() as m:
        yield m