mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
25 lines
608 B
Python
25 lines
608 B
Python
from __future__ import unicode_literals
|
|
|
|
import pytest
|
|
|
|
from spacy.en import *
|
|
from spacy.lexeme import *
|
|
|
|
|
|
def test_is_alpha():
|
|
the = EN.lexicon['the']
|
|
assert the['flags'] & (1 << IS_ALPHA)
|
|
year = EN.lexicon['1999']
|
|
assert not year['flags'] & (1 << IS_ALPHA)
|
|
mixed = EN.lexicon['hello1']
|
|
assert not mixed['flags'] & (1 << IS_ALPHA)
|
|
|
|
|
|
def test_is_digit():
|
|
the = EN.lexicon['the']
|
|
assert not the['flags'] & (1 << IS_DIGIT)
|
|
year = EN.lexicon['1999']
|
|
assert year['flags'] & (1 << IS_DIGIT)
|
|
mixed = EN.lexicon['hello1']
|
|
assert not mixed['flags'] & (1 << IS_DIGIT)
|