Build a FileContent matching what the runner passes to checkers.
(path: str, lines: list[str])
| 14 | |
| 15 | |
| 16 | def _make_content(path: str, lines: list[str]) -> FileContent: |
| 17 | """Build a FileContent matching what the runner passes to checkers.""" |
| 18 | return FileContent(path=path, lines=lines, content="\n".join(lines)) |
| 19 | |
| 20 | |
| 21 | class TestExampleSerialChecker(unittest.TestCase): |
no test coverage detected