feat: wire adapter registry into worker loop

This commit is contained in:
Jonathan
2026-07-10 18:59:28 +02:00
parent 7c28eddd47
commit fbd6a056a4
3 changed files with 24 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
from lyra_worker.registry import build_adapters
def test_registry_returns_the_three_fake_sources():
adapters = build_adapters()
names = sorted(a.name for a in adapters)
assert names == ["qobuz", "soulseek", "youtube"]
for a in adapters:
assert a.health() is True