mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
36 lines
830 B
Python
36 lines
830 B
Python
"""Test that tokens are created correctly for whitespace."""
|
|
from __future__ import unicode_literals
|
|
|
|
import pytest
|
|
|
|
|
|
def test_single_space(en_tokenizer):
|
|
tokens = en_tokenizer('hello possums')
|
|
assert len(tokens) == 2
|
|
|
|
|
|
def test_double_space(en_tokenizer):
|
|
tokens = en_tokenizer('hello possums')
|
|
assert len(tokens) == 3
|
|
assert tokens[1].orth_ == ' '
|
|
|
|
|
|
def test_newline(en_tokenizer):
|
|
tokens = en_tokenizer('hello\npossums')
|
|
assert len(tokens) == 3
|
|
|
|
|
|
def test_newline_space(en_tokenizer):
|
|
tokens = en_tokenizer('hello \npossums')
|
|
assert len(tokens) == 3
|
|
|
|
|
|
def test_newline_double_space(en_tokenizer):
|
|
tokens = en_tokenizer('hello \npossums')
|
|
assert len(tokens) == 3
|
|
|
|
|
|
def test_newline_space_wrap(en_tokenizer):
|
|
tokens = en_tokenizer('hello \n possums')
|
|
assert len(tokens) == 3
|