mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-14 19:46:26 +03:00
12 lines
181 B
Python
12 lines
181 B
Python
|
# coding: utf-8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from ...de import German
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def de_tokenizer():
|
||
|
return German.Defaults.create_tokenizer()
|