(self)
| 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) |
| 2379 | f = Foo() |
| 2380 | hi = Bar(name="hi") |
| 2381 | f.someattr = hi |
| 2382 | self._commit_someattr(f) |
| 2383 | eq_(self._someattr_history(f), ((), [hi], ())) |
| 2384 | |
| 2385 | def test_use_object_set_commit_set(self): |
| 2386 | Foo, Bar = self._two_obj_fixture(uselist=False) |
nothing calls this directly
no test coverage detected