mirror of https://github.com/explosion/spaCy.git
* Add test for ). in tokenizer
This commit is contained in:
parent
a27b23cc8f
commit
93d4bd6c2e
|
@ -110,6 +110,11 @@ def test_cnts6(EN):
|
||||||
words = [t.string for t in tokens]
|
words = [t.string for t in tokens]
|
||||||
assert len(words) == 6
|
assert len(words) == 6
|
||||||
|
|
||||||
|
def test_bracket_period(EN):
|
||||||
|
text = u'(And a 6a.m. run through Washington Park).'
|
||||||
|
tokens = EN(text)
|
||||||
|
assert tokens[len(tokens) - 1].string == u'.'
|
||||||
|
|
||||||
#def test_cnts7():
|
#def test_cnts7():
|
||||||
# text = 'But then the 6,000-year ice age came...'
|
# text = 'But then the 6,000-year ice age came...'
|
||||||
# tokens = EN.tokenize(text)
|
# tokens = EN.tokenize(text)
|
||||||
|
|
Loading…
Reference in New Issue