spaCy/spacy/tests/regression/test_issue600.py
Matthew Honnibal 125c910a8d Test Issue #600
2016-11-02 23:24:13 +01:00

9 lines
211 B
Python

from __future__ import unicode_literals
from ...tokens import Doc
from ...vocab import Vocab
def test_issue600():
doc = Doc(Vocab(tag_map={'NN': {'pos': 'NOUN'}}), words=['hello'])
doc[0].tag_ = u'NN'