mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 17:36:30 +03:00
(using new English model)
This commit is contained in:
parent
ff277140f9
commit
f57c616830
14
spacy/tests/regression/test_issue704.py
Normal file
14
spacy/tests/regression/test_issue704.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
# coding: utf8
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import pytest
|
||||
|
||||
|
||||
@pytest.mark.models
|
||||
def test_issue704(EN):
|
||||
"""Test that sentence boundaries are detected correctly."""
|
||||
|
||||
text = '“Atticus said to Jem one day, “I’d rather you shot at tin cans in the backyard, but I know you’ll go after birds. Shoot all the blue jays you want, if you can hit ‘em, but remember it’s a sin to kill a mockingbird.”'
|
||||
doc = EN(text)
|
||||
sents = [sent for sent in doc.sents]
|
||||
assert len(sents) == 3
|
Loading…
Reference in New Issue
Block a user