(
feature: Feature,
tag_one: Tag,
tag_two: Tag,
)
| 179 | |
| 180 | @pytest.fixture |
| 181 | def tagged_feature( |
| 182 | feature: Feature, |
| 183 | tag_one: Tag, |
| 184 | tag_two: Tag, |
| 185 | ) -> Feature: |
| 186 | feature.tags.add(tag_one, tag_two) |
| 187 | feature.save() |
| 188 | return feature |
| 189 | |
| 190 | |
| 191 | @pytest.fixture() |
nothing calls this directly
no test coverage detected
searching dependent graphs…