(self, request)
| 562 | |
| 563 | @pytest.fixture(params=[("a:tr", 0), ("a:tr/a:tc", 1), ("a:tr/(a:tc, a:tc)", 2)]) |
| 564 | def len_fixture(self, request): |
| 565 | tr_cxml, expected_len = request.param |
| 566 | cells = _CellCollection(element(tr_cxml), None) |
| 567 | return cells, expected_len |
| 568 | |
| 569 | # fixture components --------------------------------------------- |
| 570 |
nothing calls this directly
no test coverage detected