(self, choice_tag=None)
| 316 | # fixture components --------------------------------------------- |
| 317 | |
| 318 | def parent_bldr(self, choice_tag=None): |
| 319 | parent_bldr = a_parent().with_nsdecls() |
| 320 | if choice_tag == "choice": |
| 321 | parent_bldr.with_child(a_choice()) |
| 322 | if choice_tag == "choice2": |
| 323 | parent_bldr.with_child(a_choice2()) |
| 324 | return parent_bldr |
| 325 | |
| 326 | |
| 327 | class DescribeOneAndOnlyOne: |
no test coverage detected