"""Pytest fixtures for cache validation tests.""" import pytest def pytest_configure(config): """Register custom markers.""" config.addinivalue_line( "markers", "integration: marks tests as integration tests (may require network)" ) @pytest.fixture def sample_head_html(): """Sample HTML head section for testing.""" return ''' Test Page Title ''' @pytest.fixture def minimal_head_html(): """Minimal head with just a title.""" return 'Minimal' @pytest.fixture def empty_head_html(): """Empty head section.""" return ''