(feature: Feature)
| 443 | |
| 444 | @pytest.fixture() |
| 445 | def feature_specific_segment(feature: Feature) -> Segment: |
| 446 | return Segment.objects.create( # type: ignore[no-any-return] |
| 447 | feature=feature, name="feature specific segment", project=feature.project |
| 448 | ) |
| 449 | |
| 450 | |
| 451 | @pytest.fixture() |