()
| 65 | assert len(temp) == 0 |
| 66 | |
| 67 | def test_contains(): |
| 68 | mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)] |
| 69 | temp = SortedDict(mapping) |
| 70 | assert all((val in temp) for val in string.ascii_lowercase) |
| 71 | |
| 72 | def test_delitem(): |
| 73 | mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)] |