(command, paw, ability, executor, *args, **kwargs)
| 222 | @pytest.fixture |
| 223 | def link(): |
| 224 | def _generate_link(command, paw, ability, executor, *args, **kwargs): |
| 225 | return Link.load(dict(*args, ability=ability, executor=executor, command=command, paw=paw, **kwargs)) |
| 226 | |
| 227 | return _generate_link |
| 228 |