(self, choice_tag=None)
| 461 | # fixture components --------------------------------------------- |
| 462 | |
| 463 | def parent_bldr(self, choice_tag=None): |
| 464 | parent_bldr = a_parent().with_nsdecls() |
| 465 | if choice_tag == "choice": |
| 466 | parent_bldr.with_child(a_choice()) |
| 467 | if choice_tag == "choice2": |
| 468 | parent_bldr.with_child(a_choice2()) |
| 469 | return parent_bldr |
| 470 | |
| 471 | |
| 472 | # -------------------------------------------------------------------- |
no test coverage detected