(self, request)
| 230 | |
| 231 | @pytest.fixture(params=[36, None]) |
| 232 | def setter_fixture(self, request): |
| 233 | value = request.param |
| 234 | parent = a_parent().with_nsdecls().with_optAttr("42").element |
| 235 | if value is None: |
| 236 | expected_xml = a_parent().with_nsdecls().xml() |
| 237 | else: |
| 238 | expected_xml = a_parent().with_nsdecls().with_optAttr(value).xml() |
| 239 | return parent, value, expected_xml |
| 240 | |
| 241 | |
| 242 | class DescribeRequiredAttribute(object): |
nothing calls this directly
no test coverage detected