File size: 211 Bytes
456f698 |
1 2 3 4 5 6 7 8 |
import pytest
from verification.wiktionary_client import WiktionaryClient
@pytest.fixture
def wiktionary_client():
"""Return a real Wiktionary client for integration tests."""
return WiktionaryClient()
|