| 3 | import fasttext |
| 4 | |
| 5 | class TestFastText(unittest.TestCase): |
| 6 | def test_tokenize(self): |
| 7 | tokens = fasttext.FastText.tokenize("Hello World") |
| 8 | |
| 9 | self.assertEqual(["Hello", "World"], tokens) |
nothing calls this directly
no outgoing calls
no test coverage detected