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_lookup_classlevel.py
Size: Mime:
import pytest


class TestClass:
    @pytest.fixture
    def something(self, request):
        return request.instance

    def test_method(self, something):
        assert something is self