(event_loop, data_svc)
| 203 | |
| 204 | @pytest.fixture |
| 205 | def obfuscator(event_loop, data_svc): |
| 206 | event_loop.run_until_complete(data_svc.store( |
| 207 | Obfuscator(name='plain-text', |
| 208 | description='Does no obfuscation to any command, instead running it in plain text', |
| 209 | module='plugins.stockpile.app.obfuscators.plain_text') |
| 210 | ) |
| 211 | ) |
| 212 | |
| 213 | |
| 214 | @pytest.fixture |
nothing calls this directly
no test coverage detected