(self)
| 1042 | assert "attr" not in dict_ |
| 1043 | |
| 1044 | def test_passive_ret_no_value(self): |
| 1045 | attr, state, dict_ = self._fixture(attributes.NO_VALUE) |
| 1046 | eq_( |
| 1047 | attr.get(state, dict_, passive=attributes.PASSIVE_RETURN_NO_VALUE), |
| 1048 | attributes.NO_VALUE, |
| 1049 | ) |
| 1050 | assert "attr" not in dict_ |
| 1051 | |
| 1052 | def test_passive_ret_no_value_empty(self): |
| 1053 | attr, state, dict_ = self._fixture(None) |