(self)
| 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) |
| 1859 | f = Foo() |
| 1860 | b1 = Bar() |
| 1861 | f.someattr = b1 |
| 1862 | self._commit_someattr(f) |
| 1863 | |
| 1864 | f.someattr = None |
| 1865 | eq_(self._someattr_history(f), ([None], (), [b1])) |
| 1866 | |
| 1867 | def test_object_set_none_expired(self): |
| 1868 | Foo, Bar = self._two_obj_fixture(uselist=False) |
nothing calls this directly
no test coverage detected