(caplog: pytest.LogCaptureFixture)
| 269 | |
| 270 | |
| 271 | def test_record_tuples(caplog: pytest.LogCaptureFixture) -> None: |
| 272 | caplog.set_level(logging.INFO) |
| 273 | logger.info("boo %s", "arg") |
| 274 | |
| 275 | assert caplog.record_tuples == [(__name__, logging.INFO, "boo arg")] |
| 276 | |
| 277 | |
| 278 | def test_unicode(caplog: pytest.LogCaptureFixture) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…