aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pluggy/py2/tests/conftest.py
blob: 3e40b0f9ca086483f093f12876736105a6b2ead5 (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
26
import pytest 
 
 
@pytest.fixture( 
    params=[lambda spec: spec, lambda spec: spec()], 
    ids=["spec-is-class", "spec-is-instance"], 
) 
def he_pm(request, pm): 
    from pluggy import HookspecMarker 
 
    hookspec = HookspecMarker("example") 
 
    class Hooks(object): 
        @hookspec 
        def he_method1(self, arg): 
            return arg + 1 
 
    pm.add_hookspecs(request.param(Hooks)) 
    return pm 
 
 
@pytest.fixture 
def pm(): 
    from pluggy import PluginManager 
 
    return PluginManager("example")