(event_loop, test_operation)
| 602 | |
| 603 | @pytest.fixture |
| 604 | def setup_empty_operation(event_loop, test_operation): |
| 605 | test_operation = OperationSchema().load(test_operation) |
| 606 | test_operation.set_start_details() |
| 607 | test_objective = Objective(id='123', name='test objective', description='test', goals=[]) |
| 608 | test_operation.objective = test_objective |
| 609 | event_loop.run_until_complete(BaseService.get_service('data_svc').store(test_operation)) |
| 610 | |
| 611 | |
| 612 | @pytest.fixture() |
nothing calls this directly
no test coverage detected