(self, request)
| 272 | ] |
| 273 | ) |
| 274 | def xml_fixture(self, request): |
| 275 | member, cat_count, ser_count, cat_type, snippet_name = request.param |
| 276 | chart_type = getattr(XL_CHART_TYPE, member) |
| 277 | chart_data = make_category_chart_data(cat_count, cat_type, ser_count) |
| 278 | xml_writer = _LineChartXmlWriter(chart_type, chart_data) |
| 279 | expected_xml = snippet_text(snippet_name) |
| 280 | return xml_writer, expected_xml |
| 281 | |
| 282 | |
| 283 | class Describe_PieChartXmlWriter(object): |
nothing calls this directly
no test coverage detected