()
| 206 | assert temp.has_key('a') |
| 207 | |
| 208 | def test_items(): |
| 209 | mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)] |
| 210 | temp = SortedDict(mapping) |
| 211 | assert list(temp.items()) == mapping |
| 212 | |
| 213 | def test_keys(): |
| 214 | mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)] |
nothing calls this directly
no test coverage detected