spaCy/spacy/tests/test_misc.py

14 lines
300 B
Python
Raw Normal View History

2017-04-23 22:06:46 +03:00
# coding: utf-8
from __future__ import unicode_literals
from ..util import ensure_path
from pathlib import Path
import pytest
@pytest.mark.parametrize('text', ['hello/world', 'hello world'])
def test_util_ensure_path_succeeds(text):
path = ensure_path(text)
assert isinstance(path, Path)