(context)
| 571 | |
| 572 | @then("shape.line is a LineFormat object") |
| 573 | def then_shape_line_is_a_LineFormat_object(context): |
| 574 | shape = context.shape |
| 575 | line_format = shape.line |
| 576 | line_format_cls_name = cls_qname(line_format) |
| 577 | expected_cls_name = "pptx.dml.line.LineFormat" |
| 578 | assert line_format_cls_name == expected_cls_name, "expected '%s', got '%s'" % ( |
| 579 | expected_cls_name, |
| 580 | line_format_cls_name, |
| 581 | ) |
| 582 | |
| 583 | |
| 584 | @then("shape.name == '{expected_value}'") |
nothing calls this directly
no test coverage detected
searching dependent graphs…