(self)
| 5 | # please check with learn team before changing |
| 6 | class TestSpacy(unittest.TestCase): |
| 7 | def test_model(self): |
| 8 | nlp = spacy.load('en_core_web_sm') |
| 9 | doc = nlp('This is a sentence.') |
| 10 | self.assertEqual(5, len(doc)) |
nothing calls this directly
no outgoing calls
no test coverage detected