()
| 216 | assert list(temp.keys()) == [key for key, pos in mapping] |
| 217 | |
| 218 | def test_values(): |
| 219 | mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)] |
| 220 | temp = SortedDict(mapping) |
| 221 | assert list(temp.values()) == [pos for key, pos in mapping] |
| 222 | |
| 223 | def test_iterkeys(): |
| 224 | temp = SortedDict() |
nothing calls this directly
no test coverage detected