(self, ability, executor)
| 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') |
| 93 | test_ability = ability(executors=[test_executor]) |
| 94 | |
| 95 | found_executors = test_ability.find_executors(names=['psh', 'psh'], platform='windows') |
| 96 | assert len(found_executors) == 1 |
| 97 | assert found_executors[0] is test_executor |
| 98 | |
| 99 | def test_executor_search_duplicate_and_ordered(self, ability, executor): |
| 100 | test_executor_psh = executor(name='psh', platform='windows') |
nothing calls this directly
no test coverage detected