(self)
| 1833 | eq_(self._someattr_history(f), ((), (), ())) |
| 1834 | |
| 1835 | def test_object_init(self): |
| 1836 | Foo = self._fixture( |
| 1837 | uselist=False, useobject=True, active_history=False |
| 1838 | ) |
| 1839 | f = Foo() |
| 1840 | eq_(self._someattr_history(f), ((), (), ())) |
| 1841 | |
| 1842 | def test_object_init_active_history(self): |
| 1843 | Foo = self._fixture(uselist=False, useobject=True, active_history=True) |
nothing calls this directly
no test coverage detected