(sink)
| 236 | |
| 237 | @pytest.mark.parametrize("sink", [123, sys, object(), int]) |
| 238 | def test_invalid_sink(sink): |
| 239 | with pytest.raises(TypeError): |
| 240 | log(sink, "") |
| 241 | |
| 242 | |
| 243 | def test_deprecated_start_and_stop(writer): |
nothing calls this directly
no test coverage detected
searching dependent graphs…