(self)
| 294 | |
| 295 | @pytest.fixture |
| 296 | def insert_fixture(self): |
| 297 | parent = ( |
| 298 | a_parent().with_nsdecls().with_child(an_oomChild()).with_child(an_oooChild()) |
| 299 | ).element |
| 300 | choice = a_choice().with_nsdecls().element |
| 301 | expected_xml = ( |
| 302 | a_parent() |
| 303 | .with_nsdecls() |
| 304 | .with_child(a_choice()) |
| 305 | .with_child(an_oomChild()) |
| 306 | .with_child(an_oooChild()) |
| 307 | ).xml() |
| 308 | return parent, choice, expected_xml |
| 309 | |
| 310 | @pytest.fixture |
| 311 | def new_fixture(self): |
nothing calls this directly
no test coverage detected