()
| 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)] |
| 74 | temp = SortedDict(mapping) |
| 75 | del temp['a'] |
| 76 | temp._check() |
| 77 | |
| 78 | def test_getitem(): |
| 79 | mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)] |
nothing calls this directly
no test coverage detected