mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-06-02 15:20:01 +00:00
10 lines
176 B
Python
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
|