2014-09-25 16:29:42 +00:00
|
|
|
"""Test suspected freeing of strings"""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2014-12-23 00:40:32 +00:00
|
|
|
from spacy.en import English
|
2014-09-25 16:29:42 +00:00
|
|
|
|
|
|
|
|
2014-12-23 00:40:32 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def EN():
|
|
|
|
return English()
|
|
|
|
|
|
|
|
|
|
|
|
def test_one(EN):
|
|
|
|
tokens = EN('Betty Botter bought a pound of butter.')
|
2014-10-23 13:59:17 +00:00
|
|
|
assert tokens[0].string == 'Betty'
|
2014-12-23 00:40:32 +00:00
|
|
|
tokens2 = EN('Betty also bought a pound of butter.')
|
2014-10-23 13:59:17 +00:00
|
|
|
assert tokens2[0].string == 'Betty'
|
2014-09-25 16:29:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|