Initial commit

This commit is contained in:
Senad Uka
2019-10-20 13:16:49 +02:00
commit 233066caf4
2099 changed files with 360824 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
import unittest
import nltk.data
from nose.tools import assert_raises
class TestData(unittest.TestCase):
def test_find_raises_exception(self):
with assert_raises(LookupError) as context:
nltk.data.find('no_such_resource/foo')
assert type(context.exception) == LookupError, 'Unexpected exception raised'
def test_find_raises_exception_with_full_resource_name(self):
no_such_thing = 'no_such_thing/bar'
with assert_raises(LookupError) as context:
nltk.data.find(no_such_thing)
assert no_such_thing in str(
context.exception
), 'Exception message does not include full resource name'