mirror of https://github.com/explosion/spaCy.git
Add regression test for #636
This commit is contained in:
parent
337f9601f2
commit
c8ae682ff9
|
@ -0,0 +1,17 @@
|
||||||
|
# coding: utf8
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from ...tokens.doc import Doc
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.xfail
|
||||||
|
@pytest.mark.models
|
||||||
|
@pytest.mark.parametrize('text', ["I cant do this."])
|
||||||
|
def test_issue636(EN, text):
|
||||||
|
"""Test that to_bytes and from_bytes don't change the token lemma."""
|
||||||
|
doc1 = EN(text)
|
||||||
|
doc2 = Doc(EN.vocab)
|
||||||
|
doc2.from_bytes(doc1.to_bytes())
|
||||||
|
print([t.lemma_ for t in doc1], [t.lemma_ for t in doc2])
|
||||||
|
assert [t.lemma_ for t in doc1] == [t.lemma_ for t in doc2]
|
Loading…
Reference in New Issue