(self)
| 64 | """Complex multi-step or multi-file tasks should classify as deep.""" |
| 65 | |
| 66 | def test_full_api(self): |
| 67 | result = classify_breadth_need( |
| 68 | "Create a full REST API with authentication, database integration, " |
| 69 | "and then write tests and deploy to the server" |
| 70 | ) |
| 71 | assert result == "deep" |
| 72 | |
| 73 | def test_multi_file_with_tests(self): |
| 74 | result = classify_breadth_need( |
nothing calls this directly
no test coverage detected