(self)
| 1998 | eq_(self._someattr_history(f), ((), ["hi"], ())) |
| 1999 | |
| 2000 | def test_scalar_set_commit_reset(self): |
| 2001 | Foo = self._fixture( |
| 2002 | uselist=False, useobject=False, active_history=False |
| 2003 | ) |
| 2004 | f = Foo() |
| 2005 | f.someattr = "hi" |
| 2006 | self._commit_someattr(f) |
| 2007 | f.someattr = "there" |
| 2008 | eq_(self._someattr_history(f), (["there"], (), ["hi"])) |
| 2009 | |
| 2010 | def test_scalar_set_commit_reset_commit(self): |
| 2011 | Foo = self._fixture( |
nothing calls this directly
no test coverage detected