Due to doctest weirdness, we must not reuse WriteLoggers.
(self)
| 216 | |
| 217 | class TestWriteLoggerFactory: |
| 218 | def test_does_not_cache(self): |
| 219 | """ |
| 220 | Due to doctest weirdness, we must not reuse WriteLoggers. |
| 221 | """ |
| 222 | f = WriteLoggerFactory() |
| 223 | |
| 224 | assert f() is not f() |
| 225 | |
| 226 | def test_passes_file(self): |
| 227 | """ |
nothing calls this directly
no test coverage detected