(self, document_: Mock)
| 319 | |
| 320 | @pytest.fixture |
| 321 | def table(self, document_: Mock): |
| 322 | tbl_cxml = "w:tbl/(w:tblGrid/(w:gridCol,w:gridCol),w:tr/(w:tc,w:tc),w:tr/(w:tc,w:tc))" |
| 323 | return Table(cast(CT_Tbl, element(tbl_cxml)), document_) |
| 324 | |
| 325 | |
| 326 | class Describe_Cell: |