(self)
| 127 | assert get_ == getitem_ |
| 128 | |
| 129 | def test_get_default(self): |
| 130 | base_dict = self._get_basedict({}) |
| 131 | sentinel = object() |
| 132 | assert base_dict.get("new") is None |
| 133 | assert base_dict.get("new", sentinel) is sentinel |
| 134 | |
| 135 | def test___setitem___calls_mark_as_changed(self): |
| 136 | base_dict = self._get_basedict({}) |
nothing calls this directly
no test coverage detected