(self, request)
| 520 | |
| 521 | @pytest.fixture |
| 522 | def depth_raises_fixture(self, request): |
| 523 | category = Category(None, None) |
| 524 | for depth in (1, 2, 1): |
| 525 | category._sub_categories.append(instance_mock(request, Category, depth=depth)) |
| 526 | return category |
| 527 | |
| 528 | @pytest.fixture( |
| 529 | params=[ |
nothing calls this directly
no test coverage detected