예제 #1
0
 def height_set_fixture(self, request, parent_):
     tr_cxml, new_height, expected_tr_cxml = request.param
     row = _Row(element(tr_cxml), parent_)
     expected_xml = xml(expected_tr_cxml)
     return row, new_height, expected_xml, parent_
예제 #2
0
 def height_get_fixture(self, request):
     tr_cxml, expected_value = request.param
     row = _Row(element(tr_cxml), None)
     return row, expected_value
예제 #3
0
 def cells_fixture(self, _CellCollection_, cells_):
     row = _Row(element('a:tr'), None)
     return row, _CellCollection_, cells_
예제 #4
0
 def height_set_fixture(self, request, parent_):
     tr_cxml, new_height, expected_tr_cxml = request.param
     row = _Row(element(tr_cxml), parent_)
     expected_xml = xml(expected_tr_cxml)
     return row, new_height, expected_xml, parent_
예제 #5
0
 def height_get_fixture(self, request):
     tr_cxml, expected_value = request.param
     row = _Row(element(tr_cxml), None)
     return row, expected_value
예제 #6
0
 def cells_fixture(self, _CellCollection_, cells_):
     row = _Row(element("a:tr"), None)
     return row, _CellCollection_, cells_