()
| 332 | |
| 333 | |
| 334 | def test_same_scan_location_is_rename(): |
| 335 | sc = ScanLocation(location = f"{uuid.uuid4()}.txt", size=666) |
| 336 | sc._lzset = {"a"} |
| 337 | assert sc.is_renamed_file(sc) == 1.0 |
| 338 | |
| 339 | |
| 340 | @pytest.mark.parametrize(["l_name", "r_name", "expected"],( |
nothing calls this directly
no test coverage detected