salt/tests/integration/shell/test_master_tops.py
2017-03-01 01:33:07 +00:00

25 lines
524 B
Python

# -*- coding: utf-8 -*-
'''
tests.integration.shell.master_tops
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'''
# Import Python libs
from __future__ import absolute_import
# Import Salt Testing libs
import tests.integration as integration
class MasterTopsTest(integration.ShellCase):
_call_binary_ = 'salt'
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)
)