(self)
| 2368 | assert "someattr" not in attributes.instance_state(f).committed_state |
| 2369 | |
| 2370 | def test_use_object_set(self): |
| 2371 | Foo, Bar = self._two_obj_fixture(uselist=False) |
| 2372 | f = Foo() |
| 2373 | hi = Bar(name="hi") |
| 2374 | f.someattr = hi |
| 2375 | eq_(self._someattr_history(f), ([hi], (), ())) |
| 2376 | |
| 2377 | def test_use_object_set_commit(self): |
| 2378 | Foo, Bar = self._two_obj_fixture(uselist=False) |
nothing calls this directly
no test coverage detected