(tmpdir)
| 247 | |
| 248 | |
| 249 | def test_yield_lines(tmpdir): |
| 250 | tempfile = join(str(tmpdir), "testfile") |
| 251 | _make_lines_file(tempfile) |
| 252 | lines = list(yield_lines(tempfile)) |
| 253 | assert lines == ["line 1", "line 2", "line 4"] |
| 254 | |
| 255 | |
| 256 | def test_read_no_link(tmpdir): |
nothing calls this directly
no test coverage detected
searching dependent graphs…