()
| 96 | |
| 97 | |
| 98 | def test_collect_dict_values() -> None: |
| 99 | dicts = [{"x": 1, "y": 2, "z": 3}, {"z": 4}, 5] |
| 100 | expected = [[1, 0, 5], [2, 0, 5], [3, 4, 5]] |
| 101 | collected = collect_dict_values(dicts, ["x", "y", "z"], fill_value=0) |
| 102 | assert collected == expected |
| 103 | |
| 104 | |
| 105 | def identity(x): |
nothing calls this directly
no test coverage detected
searching dependent graphs…