(event_loop, api_v2_client)
| 8 | |
| 9 | @pytest.fixture |
| 10 | def test_plugin(event_loop, api_v2_client): |
| 11 | plugin = Plugin(name="test_plugin", enabled=True, description="a test plugin", address="test_address") |
| 12 | event_loop.run_until_complete(BaseService.get_service('data_svc').store(plugin)) |
| 13 | return plugin |
| 14 | |
| 15 | |
| 16 | @pytest.fixture |
nothing calls this directly
no test coverage detected