spaCy/tests/test_string_loading.py

17 lines
353 B
Python
Raw Normal View History

2014-09-25 20:29:42 +04:00
"""Test suspected freeing of strings"""
from __future__ import unicode_literals
import pytest
from spacy.en import EN
def test_one():
tokens = EN.tokenize('Betty Botter bought a pound of butter.')
assert tokens[0].string == 'Betty'
2014-09-25 20:29:42 +04:00
tokens2 = EN.tokenize('Betty also bought a pound of butter.')
assert tokens2[0].string == 'Betty'
2014-09-25 20:29:42 +04:00