(self)
| 44 | """Single-file coding tasks should classify as standard.""" |
| 45 | |
| 46 | def test_create_simple_file(self): |
| 47 | result = classify_breadth_need("Create a Python script called hello.py that prints Hello World") |
| 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") |
nothing calls this directly
no test coverage detected