Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
pytest / testing / example_scripts / fixtures / fill_fixtures / test_funcarg_basic.py
Size: Mime:
import pytest


@pytest.fixture
def some(request):
    return request.function.__name__


@pytest.fixture
def other(request):
    return 42


def test_func(some, other):
    pass