(event_loop, test_goal)
| 51 | |
| 52 | @pytest.fixture |
| 53 | def test_objective(event_loop, test_goal): |
| 54 | objective = Objective(id='123', name='test objective', description='a test objective', goals=[test_goal]) |
| 55 | event_loop.run_until_complete(BaseService.get_service('data_svc').store(objective)) |
| 56 | return objective |
| 57 | |
| 58 | |
| 59 | @pytest.fixture |
nothing calls this directly
no test coverage detected