Due to doctest weirdness, we must not reuse PrintLoggers.
(self)
| 191 | |
| 192 | class TestPrintLoggerFactory: |
| 193 | def test_does_not_cache(self): |
| 194 | """ |
| 195 | Due to doctest weirdness, we must not reuse PrintLoggers. |
| 196 | """ |
| 197 | f = PrintLoggerFactory() |
| 198 | |
| 199 | assert f() is not f() |
| 200 | |
| 201 | def test_passes_file(self): |
| 202 | """ |
nothing calls this directly
no test coverage detected