(self, choice_tag=None)
| 683 | # fixture components --------------------------------------------- |
| 684 | |
| 685 | def parent_bldr(self, choice_tag=None): |
| 686 | parent_bldr = a_parent().with_nsdecls() |
| 687 | if choice_tag == "choice": |
| 688 | parent_bldr.with_child(a_choice()) |
| 689 | if choice_tag == "choice2": |
| 690 | parent_bldr.with_child(a_choice2()) |
| 691 | return parent_bldr |
| 692 | |
| 693 | |
| 694 | # -------------------------------------------------------------------- |
no test coverage detected