aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pluggy/py3/tests/conftest.py
blob: 8842bd7264422696222d8be8be91a135d60d3f13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import pytest

from pluggy import HookspecMarker
from pluggy import PluginManager


@pytest.fixture(
    params=[lambda spec: spec, lambda spec: spec()],
    ids=["spec-is-class", "spec-is-instance"],
)
def he_pm(request, pm: PluginManager) -> PluginManager:
    hookspec = HookspecMarker("example")

    class Hooks:
        @hookspec
        def he_method1(self, arg: int) -> int:
            return arg + 1

    pm.add_hookspecs(request.param(Hooks))
    return pm


@pytest.fixture
def pm() -> PluginManager:
    return PluginManager("example")