(self, graphic_frame_)
| 100 | |
| 101 | @pytest.fixture |
| 102 | def dy_fixture(self, graphic_frame_): |
| 103 | tbl_cxml = "a:tbl/(a:tr{h=100},a:tr{h=200})" |
| 104 | table = Table(element(tbl_cxml), graphic_frame_) |
| 105 | expected_height = 300 |
| 106 | return table, expected_height |
| 107 | |
| 108 | # fixture components --------------------------------------------- |
| 109 |