Sample CSV content for testing.
()
| 259 | |
| 260 | @pytest.fixture |
| 261 | def sample_csv() -> str: |
| 262 | """Sample CSV content for testing.""" |
| 263 | return """name,role,department |
| 264 | Alice,Engineer,Engineering |
| 265 | Bob,Designer,Design |
| 266 | Charlie,Manager,Operations""" |
| 267 | |
| 268 | |
| 269 | # ============================================================================ |
nothing calls this directly
no outgoing calls
no test coverage detected