(self)
| 104 | assert classify("hello").tier == Tier.SIMPLE |
| 105 | |
| 106 | def test_empty_is_simple(self) -> None: |
| 107 | assert classify("").tier == Tier.SIMPLE |
| 108 | |
| 109 | def test_code_snippet_question_not_reasoning(self) -> None: |
| 110 | result = classify("What does this code do?\n```python\nprint('hello')\n```") |
nothing calls this directly
no test coverage detected