(self, choice_tag=None)
| 107 | # fixture components --------------------------------------------- |
| 108 | |
| 109 | def parent_bldr(self, choice_tag=None): |
| 110 | parent_bldr = a_parent().with_nsdecls() |
| 111 | if choice_tag == "choice": |
| 112 | parent_bldr.with_child(a_choice()) |
| 113 | if choice_tag == "choice2": |
| 114 | parent_bldr.with_child(a_choice2()) |
| 115 | return parent_bldr |
| 116 | |
| 117 | |
| 118 | class DescribeOneAndOnlyOne(object): |
no test coverage detected