Function
finished_link
(test_executor, test_agent, test_ability)
Source from the content-addressed store, hash-verified
| 552 | |
| 553 | @pytest.fixture |
| 554 | def finished_link(test_executor, test_agent, test_ability): |
| 555 | return { |
| 556 | 'command': str(b64encode(test_executor.command.encode()), 'utf-8'), |
| 557 | 'paw': test_agent.paw, |
| 558 | 'ability': test_ability, |
| 559 | 'executor': test_executor, |
| 560 | 'host': test_agent.host, |
| 561 | 'deadman': False, |
| 562 | 'used': [], |
| 563 | 'id': '789', |
| 564 | 'relationships': [], |
| 565 | 'status': 0, |
| 566 | 'output': 'test_dir' |
| 567 | } |
| 568 | |
| 569 | |
| 570 | @pytest.fixture |
Callers
nothing calls this directly
Tested by
no test coverage detected