(self)
| 34 | assert classify_breadth_need("Hello!") == "minimal" |
| 35 | |
| 36 | def test_thanks(self): |
| 37 | assert classify_breadth_need("Thanks, that works!") == "minimal" |
| 38 | |
| 39 | def test_very_short_no_action(self): |
| 40 | assert classify_breadth_need("list files") in ("minimal", "standard") |
nothing calls this directly
no test coverage detected