()
| 61 | |
| 62 | |
| 63 | async def test_no_message_if_no_suggestion(): |
| 64 | log = [] |
| 65 | suggester = FillSuggester() |
| 66 | await suggester._get_suggestion(LogListNode(log), "this is a longer string") |
| 67 | assert log == [] |
| 68 | |
| 69 | |
| 70 | async def test_suggestion_ready_message_on_cache_hit(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…