(self)
| 1926 | eq_(self._someattr_history(f), (["hi"], (), ())) |
| 1927 | |
| 1928 | def test_scalar_set_None(self): |
| 1929 | # note - compare: |
| 1930 | # test_scalar_set_None, |
| 1931 | # test_scalar_get_first_set_None, |
| 1932 | # test_use_object_set_None, |
| 1933 | # test_use_object_get_first_set_None |
| 1934 | Foo = self._fixture( |
| 1935 | uselist=False, useobject=False, active_history=False |
| 1936 | ) |
| 1937 | f = Foo() |
| 1938 | f.someattr = None |
| 1939 | eq_(self._someattr_history(f), ([None], (), ())) |
| 1940 | |
| 1941 | def test_scalar_del(self): |
| 1942 | # note - compare: |
nothing calls this directly
no test coverage detected