()
| 410 | |
| 411 | |
| 412 | def test_SerializableLock_locked(): |
| 413 | a = SerializableLock("a") |
| 414 | assert not a.locked() |
| 415 | with a: |
| 416 | assert a.locked() |
| 417 | assert not a.locked() |
| 418 | |
| 419 | |
| 420 | def test_SerializableLock_acquire_blocking(): |
nothing calls this directly
no test coverage detected