(self, f)
| 1788 | ) |
| 1789 | |
| 1790 | def _someattr_committed_state(self, f): |
| 1791 | Foo = f.__class__ |
| 1792 | return Foo.someattr.impl.get_committed_value( |
| 1793 | attributes.instance_state(f), attributes.instance_dict(f) |
| 1794 | ) |
| 1795 | |
| 1796 | def test_committed_value_init(self): |
| 1797 | Foo = self._fixture( |
no test coverage detected