| 3 | from gensim import corpora |
| 4 | |
| 5 | class TestGensim(unittest.TestCase): |
| 6 | def test_dictionary(self): |
| 7 | dic = corpora.Dictionary([['lorem', 'ipsum']]) |
| 8 | |
| 9 | self.assertEqual(2, len(dic.token2id)) |
nothing calls this directly
no outgoing calls
no test coverage detected