(self)
| 48 | assert result in ("standard", "deep") |
| 49 | |
| 50 | def test_write_function(self): |
| 51 | result = classify_breadth_need("Write a function that calculates the factorial of a number") |
| 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") |
nothing calls this directly
no test coverage detected