(self, ability, executor)
| 53 | assert agent.privileged_to_run(ability) |
| 54 | |
| 55 | def test_executor_store(self, ability, executor): |
| 56 | test_executor = executor() |
| 57 | test_ability = ability(executors=[test_executor]) |
| 58 | |
| 59 | assert len(list(test_ability.executors)) == 1 |
| 60 | |
| 61 | def test_executor_store_multiple(self, ability, executor): |
| 62 | test_executor_windows = executor(name='psh', platform='windows') |