()
| 393 | |
| 394 | |
| 395 | def test_codepath_Queue_example() -> None: |
| 396 | try: |
| 397 | queue.Queue().get(timeout=0.001) |
| 398 | except queue.Empty: |
| 399 | excinfo = _pytest._code.ExceptionInfo.from_current() |
| 400 | entry = excinfo.traceback[-1] |
| 401 | path = entry.path |
| 402 | assert isinstance(path, Path) |
| 403 | assert path.name.lower() == "queue.py" |
| 404 | assert path.exists() |
| 405 | |
| 406 | |
| 407 | def test_match_succeeds(): |
nothing calls this directly
no test coverage detected