Add file for misc tests

This commit is contained in:
ines 2017-04-23 21:06:46 +02:00
parent 83f66947dc
commit 012ea594d1

19
spacy/tests/test_misc.py Normal file
View File

@ -0,0 +1,19 @@
# 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)
@pytest.mark.parametrize('text', [b'hello/world', True, False, None])
def test_util_ensure_path_fails(text):
path = ensure_path(text)
assert not isinstance(path, Path)