mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-04 21:50:35 +03:00
Reformat test and use text_file fixture
This commit is contained in:
parent
49a102aff3
commit
44de3c7642
|
@ -1,17 +1,16 @@
|
||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
|
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
from io import StringIO
|
|
||||||
|
|
||||||
import pytest
|
|
||||||
|
|
||||||
word2vec_str = """, -0.046107 -0.035951 -0.560418
|
word2vec_str = """, -0.046107 -0.035951 -0.560418
|
||||||
de -0.648927 -0.400976 -0.527124
|
de -0.648927 -0.400976 -0.527124
|
||||||
. 0.113685 0.439990 -0.634510
|
. 0.113685 0.439990 -0.634510
|
||||||
-1.499184 -0.184280 -0.598371"""
|
\u00A0 -1.499184 -0.184280 -0.598371"""
|
||||||
|
|
||||||
@pytest.mark.xfail
|
|
||||||
def test_issue834(en_vocab):
|
def test_issue834(en_vocab, text_file):
|
||||||
f = StringIO(word2vec_str)
|
"""Test that no-break space (U+00A0) is detected as space by the load_vectors function."""
|
||||||
vector_length = en_vocab.load_vectors(f)
|
text_file.write(word2vec_str)
|
||||||
|
text_file.seek(0)
|
||||||
|
vector_length = en_vocab.load_vectors(text_file)
|
||||||
assert vector_length == 3
|
assert vector_length == 3
|
||||||
|
|
Loading…
Reference in New Issue
Block a user