(self)
| 97 | |
| 98 | class TestAdjustTier: |
| 99 | def test_weak_moves_up(self) -> None: |
| 100 | assert _adjust_tier("SIMPLE", "weak") == "MEDIUM" |
| 101 | assert _adjust_tier("MEDIUM", "weak") == "COMPLEX" |
| 102 | assert _adjust_tier("REASONING", "weak") == "COMPLEX" |
| 103 | |
| 104 | def test_weak_caps_at_complex(self) -> None: |
| 105 | assert _adjust_tier("COMPLEX", "weak") == "COMPLEX" |
nothing calls this directly
no test coverage detected