(self)
| 1794 | ) |
| 1795 | |
| 1796 | def test_committed_value_init(self): |
| 1797 | Foo = self._fixture( |
| 1798 | uselist=False, useobject=False, active_history=False |
| 1799 | ) |
| 1800 | f = Foo() |
| 1801 | eq_(self._someattr_committed_state(f), None) |
| 1802 | |
| 1803 | def test_committed_value_set(self): |
| 1804 | Foo = self._fixture( |
nothing calls this directly
no test coverage detected