mirror of
https://github.com/explosion/spaCy.git
synced 2025-06-29 01:13:17 +03:00
* Add stubs to test is_bracket/is_quote/is_left_punct/is_right_punct functions
This commit is contained in:
parent
1a2ee73e98
commit
ee975d36d0
|
@ -41,3 +41,18 @@ def test_is_digit(words):
|
||||||
assert not is_digit(words[7])
|
assert not is_digit(words[7])
|
||||||
assert not is_digit(words[8])
|
assert not is_digit(words[8])
|
||||||
assert not is_digit(words[9])
|
assert not is_digit(words[9])
|
||||||
|
|
||||||
|
|
||||||
|
def test_is_quote(words):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def test_is_bracket(words):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def test_is_left_bracket(words):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def test_is_right_bracket(words):
|
||||||
|
pass
|
||||||
|
|
Loading…
Reference in New Issue
Block a user