(self)
| 588 | |
| 589 | @pytest.fixture |
| 590 | def subs_fixture(self): |
| 591 | sub_categories_ = [42, 24] |
| 592 | category = Category(None, None) |
| 593 | category._sub_categories = sub_categories_ |
| 594 | return category, sub_categories_ |
| 595 | |
| 596 | # fixture components --------------------------------------------- |
| 597 |