(self, ability, executor)
| 83 | assert list(test_ability.executors) == [test_executor_2, test_executor_3] # FIFO |
| 84 | |
| 85 | def test_executor_search(self, ability, executor): |
| 86 | test_executor = executor(name='psh', platform='windows') |
| 87 | test_ability = ability(executors=[test_executor]) |
| 88 | |
| 89 | assert test_ability.find_executor(name='psh', platform='windows') is test_executor |
| 90 | |
| 91 | def test_executor_search_duplicate(self, ability, executor): |
| 92 | test_executor = executor(name='psh', platform='windows') |
nothing calls this directly
no test coverage detected