# This file defines a fixture that should NOT be available to sibling test files
importpytest@pytest.fixturedefisolated_fixture():"""A fixture only available in this file."""return"isolated"deftest_uses_own_fixture(isolated_fixture):"""Test that uses the fixture defined in the same file."""assertisolated_fixture=="isolated"