()
| 188 | assert len(dup) == 0 |
| 189 | |
| 190 | def test_fromkeys(): |
| 191 | mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)] |
| 192 | temp = SortedDict.fromkeys(mapping, 1) |
| 193 | assert all(temp[key] == 1 for key in temp) |
| 194 | |
| 195 | def test_get(): |
| 196 | mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)] |