8 lines
140 B
Python
8 lines
140 B
Python
|
# ./test_simpleprovider.py
|
||
|
def pytest_funcarg__myfuncarg(request):
|
||
|
return 42
|
||
|
|
||
|
def test_function(myfuncarg):
|
||
|
assert myfuncarg == 17
|
||
|
|