(self)
| 266 | |
| 267 | @pytest.fixture |
| 268 | def getter_fixture(self): |
| 269 | parent = a_parent().with_nsdecls().with_reqAttr("42").element |
| 270 | return parent, 42 |
| 271 | |
| 272 | @pytest.fixture(params=[(None, TypeError), (-4, ValueError), ("2", TypeError)]) |
| 273 | def invalid_assign_fixture(self, request): |
nothing calls this directly
no test coverage detected