Source code for nltk.test.unit.test_data

import pytest

import nltk.data


[docs]def test_find_raises_exception(): with pytest.raises(LookupError): nltk.data.find("no_such_resource/foo")
[docs]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)