(pth)
| 218 | |
| 219 | |
| 220 | def get_directory_content(pth): # TODO: use ScanLocation.list_recursive instead |
| 221 | for f in walk(pth): |
| 222 | yield ScanLocation( |
| 223 | f, |
| 224 | strip_path=str(pth) |
| 225 | ) |
| 226 | |
| 227 | |
| 228 | def test_diff_same_renamed(fixtures, tmp_path): |
no test coverage detected