()
| 211 | assert list(temp.items()) == mapping |
| 212 | |
| 213 | def test_keys(): |
| 214 | mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)] |
| 215 | temp = SortedDict(mapping) |
| 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)] |
nothing calls this directly
no test coverage detected