(self, request)
| 230 | |
| 231 | @pytest.fixture |
| 232 | def rels_with_rId_gap(self, request): |
| 233 | rels = Relationships(None) |
| 234 | rel_with_rId1 = instance_mock(request, _Relationship, name="rel_with_rId1", rId="rId1") |
| 235 | rel_with_rId3 = instance_mock(request, _Relationship, name="rel_with_rId3", rId="rId3") |
| 236 | rels["rId1"] = rel_with_rId1 |
| 237 | rels["rId3"] = rel_with_rId3 |
| 238 | return rels, "rId2" |
| 239 | |
| 240 | @pytest.fixture |
| 241 | def rels_with_target_known_by_reltype(self, rels, _rel_with_target_known_by_reltype): |
nothing calls this directly
no test coverage detected