mirror of
https://github.com/open-jarvis/OpenJarvis.git
synced 2026-07-28 13:26:48 +00:00
9 lines
277 B
Python
9 lines
277 B
Python
"""Tests for speech integration in SystemBuilder/JarvisSystem."""
|
|
|
|
from openjarvis.system import JarvisSystem
|
|
|
|
|
|
def test_jarvis_system_has_speech_backend():
|
|
"""JarvisSystem has a speech_backend attribute."""
|
|
assert "speech_backend" in JarvisSystem.__dataclass_fields__
|