(self)
| 52 | assert result in ("standard", "deep") |
| 53 | |
| 54 | def test_fix_bug(self): |
| 55 | result = classify_breadth_need("Fix the bug in fibonacci.py where it crashes on negative input") |
| 56 | assert result in ("standard", "deep") |
| 57 | |
| 58 | def test_edit_file(self): |
| 59 | result = classify_breadth_need("Edit config.py and change the debug flag to False") |
nothing calls this directly
no test coverage detected