(self)
| 1010 | eq_(A.value.get_history(inst), A._value.get_history(inst)) |
| 1011 | |
| 1012 | def test_info_not_mirrored(self): |
| 1013 | A = self._fixture() |
| 1014 | A._value.info["foo"] = "bar" |
| 1015 | A.value.info["bar"] = "hoho" |
| 1016 | |
| 1017 | eq_(A._value.info, {"foo": "bar"}) |
| 1018 | eq_(A.value.info, {"bar": "hoho"}) |
| 1019 | |
| 1020 | def test_info_from_hybrid(self): |
| 1021 | A = self._fixture() |