()
| 571 | |
| 572 | |
| 573 | def test_scandir_with_non_existent_directory() -> None: |
| 574 | # Test with a directory that does not exist |
| 575 | non_existent_dir = "path_to_non_existent_dir" |
| 576 | result = scandir(non_existent_dir) |
| 577 | # Assert that the result is an empty list |
| 578 | assert result == [] |
| 579 | |
| 580 | |
| 581 | def test_scandir_handles_os_error() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…