(event_loop)
| 466 | |
| 467 | @pytest.fixture |
| 468 | def test_source(event_loop): |
| 469 | test_fact = Fact(trait='remote.host.fqdn', value='dc') |
| 470 | test_source = Source(id='123', name='test', facts=[test_fact], adjustments=[]) |
| 471 | event_loop.run_until_complete(BaseService.get_service('data_svc').store(test_source)) |
| 472 | return test_source |
| 473 | |
| 474 | |
| 475 | @pytest.fixture |
nothing calls this directly
no test coverage detected