(self)
| 1989 | eq_(self._someattr_history(f), ([None], (), ())) |
| 1990 | |
| 1991 | def test_scalar_set_commit(self): |
| 1992 | Foo = self._fixture( |
| 1993 | uselist=False, useobject=False, active_history=False |
| 1994 | ) |
| 1995 | f = Foo() |
| 1996 | f.someattr = "hi" |
| 1997 | self._commit_someattr(f) |
| 1998 | eq_(self._someattr_history(f), ((), ["hi"], ())) |
| 1999 | |
| 2000 | def test_scalar_set_commit_reset(self): |
| 2001 | Foo = self._fixture( |
nothing calls this directly
no test coverage detected