mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
* Add extra tests
This commit is contained in:
parent
93505276ed
commit
bc460de171
25
tests/test_lexeme_flags.py
Normal file
25
tests/test_lexeme_flags.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
import pytest
|
||||
|
||||
from spacy.en import *
|
||||
|
||||
|
||||
def test_is_alpha():
|
||||
the = EN.lookup('the')
|
||||
assert the.check_flag(EN.fl_is_alpha)
|
||||
year = EN.lookup('1999')
|
||||
assert not year.check_flag(EN.fl_is_alpha)
|
||||
mixed = EN.lookup('hello1')
|
||||
assert not mixed.check_flag(EN.fl_is_alpha)
|
||||
|
||||
|
||||
def test_is_digit():
|
||||
the = EN.lookup('the')
|
||||
assert not the.check_flag(EN.fl_is_digit)
|
||||
year = EN.lookup('1999')
|
||||
assert year.check_flag(EN.fl_is_digit)
|
||||
mixed = EN.lookup('hello1')
|
||||
assert not mixed.check_flag(EN.fl_is_digit)
|
||||
|
||||
|
16
tests/test_string_loading.py
Normal file
16
tests/test_string_loading.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
"""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.string(0) == 'Betty'
|
||||
tokens2 = EN.tokenize('Betty also bought a pound of butter.')
|
||||
assert tokens2.string(0) == 'Betty'
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user