(self)
| 277 | |
| 278 | @pytest.fixture |
| 279 | def setter_fixture(self): |
| 280 | parent = a_parent().with_nsdecls().with_reqAttr("42").element |
| 281 | value = 24 |
| 282 | expected_xml = a_parent().with_nsdecls().with_reqAttr(value).xml() |
| 283 | return parent, value, expected_xml |
| 284 | |
| 285 | |
| 286 | class DescribeZeroOrMore(object): |
nothing calls this directly
no test coverage detected