(self)
| 38 | |
| 39 | class TestNestedAccess: |
| 40 | def test_get_nested(self): |
| 41 | d = {"a": {"b": {"c": 42}}} |
| 42 | assert _get_nested(d, "a.b.c") == 42 |
| 43 | |
| 44 | def test_get_nested_missing(self): |
| 45 | assert _get_nested({"a": 1}, "b", "default") == "default" |
nothing calls this directly
no test coverage detected