Files
pytest2/example/funcarg/mysetup/conftest.py
holger krekel ee78661775 refining docs further
--HG--
branch : trunk
2009-04-13 19:51:42 +02:00

11 lines
181 B
Python

from myapp import MyApp
class ConftestPlugin:
def pytest_funcarg__mysetup(self, request):
return MySetup()
class MySetup:
def myapp(self):
return MyApp()