(self)
| 1005 | is_(A.value.class_, A._value.class_) |
| 1006 | |
| 1007 | def test_get_history(self): |
| 1008 | A = self._fixture() |
| 1009 | inst = A(_value=5) |
| 1010 | eq_(A.value.get_history(inst), A._value.get_history(inst)) |
| 1011 | |
| 1012 | def test_info_not_mirrored(self): |
| 1013 | A = self._fixture() |
nothing calls this directly
no test coverage detected