feat(co-gahusb): 어드바이저리 락 (acquire/release/heartbeat/list, TDD)

This commit is contained in:
2026-06-12 07:20:30 +09:00
parent 0d466b235c
commit 8212a51f90
4 changed files with 131 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# co-gahusb/tests/conftest.py
import pytest_asyncio
import fakeredis.aioredis
@pytest_asyncio.fixture
async def r():
client = fakeredis.aioredis.FakeRedis(decode_responses=True)
await client.flushall()
yield client
await client.aclose()