jonesmarvin8 24f6f1f8ca fixes
2026-04-26 21:29:54 -04:00

10 lines
176 B
Python

import pytest
from unittest.mock import Mock
from keycard.card_interface import CardInterface
@pytest.fixture
def card():
mock = Mock(spec=CardInterface)
return mock