(self)
| 22 | assert classify_breadth_need("What is a decorator?") == "minimal" |
| 23 | |
| 24 | def test_how_question(self): |
| 25 | assert classify_breadth_need("How does async/await work?") == "minimal" |
| 26 | |
| 27 | def test_question_mark(self): |
| 28 | assert classify_breadth_need("Is Python pass-by-reference?") == "minimal" |
nothing calls this directly
no test coverage detected