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