()
| 47 | |
| 48 | |
| 49 | def test_source_from_lines() -> None: |
| 50 | lines = ["a \n", "b\n", "c"] |
| 51 | source = Source(lines) |
| 52 | assert source.lines == ["a ", "b", "c"] |
| 53 | |
| 54 | |
| 55 | def test_source_from_inner_function() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…