Spaces:
Sleeping
Sleeping
File size: 390 Bytes
d916065 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import pytest
import nltk.data
def test_find_raises_exception():
with pytest.raises(LookupError):
nltk.data.find("no_such_resource/foo")
def test_find_raises_exception_with_full_resource_name():
no_such_thing = "no_such_thing/bar"
with pytest.raises(LookupError) as exc:
nltk.data.find(no_such_thing)
assert no_such_thing in str(exc)
|