| 918 | @pytest.mark.parametrize("lock_type", [FileLock, SoftFileLock]) |
| 919 | def test_singleton_instance_tracking_is_unique_per_subclass(lock_type: type[BaseFileLock]) -> None: |
| 920 | class Lock1(lock_type): # ty: ignore[unsupported-base] |
| 921 | pass |
| 922 | |
| 923 | class Lock2(lock_type): # ty: ignore[unsupported-base] |
| 924 | pass |
nothing calls this directly
no outgoing calls
no test coverage detected