* Add stubs to test is_bracket/is_quote/is_left_punct/is_right_punct functions

This commit is contained in:
Matthew Honnibal 2016-02-04 13:02:25 +01:00
parent 1a2ee73e98
commit ee975d36d0

View File

@ -41,3 +41,18 @@ def test_is_digit(words):
assert not is_digit(words[7])
assert not is_digit(words[8])
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