forked from mirrors/gecko-dev
		
	MozReview-Commit-ID: 5qfK6OygVMH --HG-- rename : third_party/python/pytest/_pytest/vendored_packages/pluggy-0.4.0.dist-info/LICENSE.txt => third_party/python/pluggy/LICENSE rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_a/__init__.py rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_b/__init__.py rename : third_party/python/pytest/_pytest/_code/__init__.py => third_party/python/pytest/src/_pytest/_code/__init__.py extra : rebase_source : d80873f2b1899decefbddddfc2f69ae045925b81
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			547 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			547 B
		
	
	
	
		
			Python
		
	
	
	
	
	
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")
 |