(self)
| 2356 | is_true(attributes.instance_state(f).modified) |
| 2357 | |
| 2358 | def test_use_object_init(self): |
| 2359 | Foo, Bar = self._two_obj_fixture(uselist=False) |
| 2360 | f = Foo() |
| 2361 | eq_(self._someattr_history(f), ((), (), ())) |
| 2362 | |
| 2363 | def test_use_object_no_init_side_effect(self): |
| 2364 | Foo, Bar = self._two_obj_fixture(uselist=False) |
nothing calls this directly
no test coverage detected