Test with string that can be converted to int.
(self)
| 160 | assert normalize_priority(100) == 100 |
| 161 | |
| 162 | def test_valid_string_number(self): |
| 163 | """Test with string that can be converted to int.""" |
| 164 | assert normalize_priority("5") == 5 |
| 165 | assert normalize_priority("10") == 10 |
| 166 | |
| 167 | def test_zero_returns_default(self): |
| 168 | """Test that zero priority returns default.""" |
nothing calls this directly
no test coverage detected