(self)
| 106 | assert _adjust_tier("REASONING", "weak") == "COMPLEX" |
| 107 | |
| 108 | def test_strong_moves_down(self) -> None: |
| 109 | assert _adjust_tier("COMPLEX", "strong") == "MEDIUM" |
| 110 | assert _adjust_tier("MEDIUM", "strong") == "SIMPLE" |
| 111 | |
| 112 | def test_strong_caps_at_simple(self) -> None: |
| 113 | assert _adjust_tier("SIMPLE", "strong") == "SIMPLE" |
nothing calls this directly
no test coverage detected