vibe-coded-mcp-dekstop-control/tests/test_backend.py

12 lines
300 B
Python
Raw Permalink Normal View History

2026-06-25 22:57:37 +02:00
"""Tests for the backend abstraction."""
import pytest
from vibe_coded_mcp_desktop_control.backend import InputBackend
def test_input_backend_cannot_be_instantiated() -> None:
"""The abstract base class should not be instantiable."""
with pytest.raises(TypeError):
InputBackend()