Test with valid integer priority.
(self)
| 154 | """Test normalize_priority helper function.""" |
| 155 | |
| 156 | def test_valid_integer(self): |
| 157 | """Test with valid integer priority.""" |
| 158 | assert normalize_priority(5) == 5 |
| 159 | assert normalize_priority(1) == 1 |
| 160 | assert normalize_priority(100) == 100 |
| 161 | |
| 162 | def test_valid_string_number(self): |
| 163 | """Test with string that can be converted to int.""" |
nothing calls this directly
no test coverage detected