(self)
| 317 | """ |
| 318 | |
| 319 | def test_tokenize_handles_none(self): |
| 320 | from mempalace.searcher import _tokenize |
| 321 | |
| 322 | assert _tokenize(None) == [] |
| 323 | |
| 324 | def test_tokenize_handles_empty_string(self): |
| 325 | from mempalace.searcher import _tokenize |
nothing calls this directly
no test coverage detected