(link_id, link_paw='123456', link_status=-3)
| 147 | @pytest.fixture |
| 148 | def make_test_link(test_ability): |
| 149 | def _make_link(link_id, link_paw='123456', link_status=-3): |
| 150 | return Link(command='', paw=link_paw, ability=test_ability, id=link_id, executor=next(test_ability.executors), |
| 151 | status=link_status) |
| 152 | return _make_link |
| 153 | |
| 154 |