mirror of https://github.com/explosion/spaCy.git
Update test
This commit is contained in:
parent
f9786d765e
commit
387c7aba15
|
@ -26,10 +26,12 @@ def test_util_ensure_path_succeeds(text):
|
||||||
assert isinstance(path, Path)
|
assert isinstance(path, Path)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("package", ["numpy"])
|
@pytest.mark.parametrize(
|
||||||
def test_util_is_package(package):
|
"package,result", [("numpy", True), ("sfkodskfosdkfpsdpofkspdof", False)]
|
||||||
|
)
|
||||||
|
def test_util_is_package(package, result):
|
||||||
"""Test that an installed package via pip is recognised by util.is_package."""
|
"""Test that an installed package via pip is recognised by util.is_package."""
|
||||||
assert util.is_package(package)
|
assert util.is_package(package) is result
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("package", ["thinc"])
|
@pytest.mark.parametrize("package", ["thinc"])
|
||||||
|
|
Loading…
Reference in New Issue