(self)
| 413 | assert 0 <= d.complexity <= 1 |
| 414 | |
| 415 | def test_classify(self) -> None: |
| 416 | from uncommon_route import classify |
| 417 | r = classify("implement a B-tree in C++ with deletion support") |
| 418 | assert r.tier is not None |
| 419 | assert r.tier.value in ("MEDIUM", "COMPLEX") |
| 420 | assert len(r.signals) > 0 |
| 421 | |
| 422 | def test_route_with_system_prompt(self) -> None: |
| 423 | from uncommon_route import route |
nothing calls this directly
no test coverage detected