(self)
| 1845 | eq_(self._someattr_history(f), ((), (), ())) |
| 1846 | |
| 1847 | def test_object_replace(self): |
| 1848 | Foo, Bar = self._two_obj_fixture(uselist=False) |
| 1849 | f = Foo() |
| 1850 | b1, b2 = Bar(), Bar() |
| 1851 | f.someattr = b1 |
| 1852 | self._commit_someattr(f) |
| 1853 | |
| 1854 | f.someattr = b2 |
| 1855 | eq_(self._someattr_history(f), ([b2], (), [b1])) |
| 1856 | |
| 1857 | def test_object_set_none(self): |
| 1858 | Foo, Bar = self._two_obj_fixture(uselist=False) |
nothing calls this directly
no test coverage detected