(self)
| 1826 | eq_(self._someattr_committed_state(f), 3) |
| 1827 | |
| 1828 | def test_scalar_init(self): |
| 1829 | Foo = self._fixture( |
| 1830 | uselist=False, useobject=False, active_history=False |
| 1831 | ) |
| 1832 | f = Foo() |
| 1833 | eq_(self._someattr_history(f), ((), (), ())) |
| 1834 | |
| 1835 | def test_object_init(self): |
| 1836 | Foo = self._fixture( |
nothing calls this directly
no test coverage detected