(self, request, shape_)
| 121 | ] |
| 122 | ) |
| 123 | def width_set_fixture(self, request, shape_): |
| 124 | initial_width, width = request.param |
| 125 | shape_.ln = shape_.get_or_add_ln.return_value = self.ln_bldr(initial_width).element |
| 126 | line = LineFormat(shape_) |
| 127 | expected_xml = self.ln_bldr(width).xml() |
| 128 | return line, width, expected_xml |
| 129 | |
| 130 | # fixture components --------------------------------------------- |
| 131 |
nothing calls this directly
no test coverage detected