(self, request)
| 188 | ] |
| 189 | ) |
| 190 | def boolprop_set_fixture(self, request): |
| 191 | tbl_cxml, boolprop_name, new_value, expected_tbl_cxml = request.param |
| 192 | table = Table(element(tbl_cxml), None) |
| 193 | expected_xml = xml(expected_tbl_cxml) |
| 194 | return table, boolprop_name, new_value, expected_xml |
| 195 | |
| 196 | |
| 197 | class Describe_Cell(object): |