(source, edge, target, *args, **kwargs)
| 246 | @pytest.fixture |
| 247 | def relationship(): |
| 248 | def _generate_relationship(source, edge, target, *args, **kwargs): |
| 249 | return Relationship(*args, source=source, edge=edge, target=target, **kwargs) |
| 250 | |
| 251 | return _generate_relationship |
| 252 |
nothing calls this directly
no test coverage detected