(self, categories_prop_, categories_, category_)
| 171 | |
| 172 | @pytest.fixture |
| 173 | def add_cat_fixture(self, categories_prop_, categories_, category_): |
| 174 | chart_data = CategoryChartData() |
| 175 | name = "foobar" |
| 176 | categories_.add_category.return_value = category_ |
| 177 | return chart_data, name, categories_, category_ |
| 178 | |
| 179 | @pytest.fixture |
| 180 | def add_ser_fixture(self, CategorySeriesData_, series_): |
nothing calls this directly
no test coverage detected