mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-05-14 20:19:51 +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
|