mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
038002d616
Improve readability of test cases and add conftest.py with fixture
12 lines
187 B
Python
12 lines
187 B
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
import pytest
|
|
|
|
from ...hu import Hungarian
|
|
|
|
|
|
@pytest.fixture
|
|
def hu_tokenizer():
|
|
return Hungarian.Defaults.create_tokenizer()
|