Update test

This commit is contained in:
Ines Montani 2020-05-24 14:55:16 +02:00
parent f9786d765e
commit 387c7aba15
1 changed files with 5 additions and 3 deletions

View File

@ -26,10 +26,12 @@ def test_util_ensure_path_succeeds(text):
assert isinstance(path, Path)
@pytest.mark.parametrize("package", ["numpy"])
def test_util_is_package(package):
@pytest.mark.parametrize(
"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."""
assert util.is_package(package)
assert util.is_package(package) is result
@pytest.mark.parametrize("package", ["thinc"])