mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
14 lines
300 B
Python
14 lines
300 B
Python
# 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)
|