(rep, path_type, tmp_path)
| 57 | @repetitions |
| 58 | @pytest.mark.parametrize("path_type", [str, pathlib.Path]) |
| 59 | def test_file_path_sink(rep, path_type, tmp_path): |
| 60 | file = tmp_path / "test.log" |
| 61 | sink = path_type(str(file)) |
| 62 | log(sink, rep) |
| 63 | assert file.read_text() == expected * rep |
| 64 | |
| 65 | |
| 66 | @repetitions |
nothing calls this directly
no test coverage detected
searching dependent graphs…