(self)
| 1878 | eq_(self._someattr_history(f), ([None], (), ())) |
| 1879 | |
| 1880 | def test_object_del(self): |
| 1881 | Foo, Bar = self._two_obj_fixture(uselist=False) |
| 1882 | f = Foo() |
| 1883 | b1 = Bar() |
| 1884 | f.someattr = b1 |
| 1885 | |
| 1886 | self._commit_someattr(f) |
| 1887 | |
| 1888 | del f.someattr |
| 1889 | eq_(self._someattr_history(f), ((), (), [b1])) |
| 1890 | |
| 1891 | def test_object_del_expired(self): |
| 1892 | Foo, Bar = self._two_obj_fixture(uselist=False) |
nothing calls this directly
no test coverage detected