(self)
| 1801 | eq_(self._someattr_committed_state(f), None) |
| 1802 | |
| 1803 | def test_committed_value_set(self): |
| 1804 | Foo = self._fixture( |
| 1805 | uselist=False, useobject=False, active_history=False |
| 1806 | ) |
| 1807 | f = Foo() |
| 1808 | f.someattr = 3 |
| 1809 | eq_(self._someattr_committed_state(f), None) |
| 1810 | |
| 1811 | def test_committed_value_set_active_hist(self): |
| 1812 | Foo = self._fixture( |
nothing calls this directly
no test coverage detected