/
githubmirror
/
salt
Обзор
Документация
Войти
/
githubmirror
/
salt
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/integration/shell/test_master_tops.py
19 строк
432 B
Pedro Algarvio
Update pre-commit hook versions
29 фев 2024, 15:30
Не верифицирован
29 фев 2024, 15:30
f454911
Код
Авторство
О чём код?
""" tests.integration.shell.master_tops ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ """ import pytest from tests.support.case import ShellCase @pytest.mark.windows_whitelisted class MasterTopsTest(ShellCase): _call_binary_ = "salt" @pytest.mark.slow_test def test_custom_tops_gets_utilized(self): resp = self.run_call("state.show_top") self.assertTrue(any("master_tops_test" in _x for _x in resp))