(self)
| 1918 | assert "someattr" not in attributes.instance_state(f).committed_state |
| 1919 | |
| 1920 | def test_scalar_set(self): |
| 1921 | Foo = self._fixture( |
| 1922 | uselist=False, useobject=False, active_history=False |
| 1923 | ) |
| 1924 | f = Foo() |
| 1925 | f.someattr = "hi" |
| 1926 | eq_(self._someattr_history(f), (["hi"], (), ())) |
| 1927 | |
| 1928 | def test_scalar_set_None(self): |
| 1929 | # note - compare: |
nothing calls this directly
no test coverage detected