()
| 285 | assert list(temp.items()) == mapping |
| 286 | |
| 287 | def test_update2(): |
| 288 | mapping = [(val, pos) for pos, val in enumerate(string.ascii_lowercase)] |
| 289 | temp = SortedDict() |
| 290 | temp.update(**dict(mapping)) |
| 291 | assert list(temp.items()) == mapping |
| 292 | |
| 293 | def test_repr(): |
| 294 | temp = SortedDict({'alice': 3, 'bob': 1, 'carol': 2, 'dave': 4}) |
nothing calls this directly
no test coverage detected