mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
29 lines
647 B
Python
29 lines
647 B
Python
'''
|
|
tests for host state
|
|
'''
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting.helpers import ensure_in_syspath
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import salt libs
|
|
import integration
|
|
|
|
|
|
class CompileTest(integration.ModuleCase):
|
|
'''
|
|
Validate the state compiler
|
|
'''
|
|
def test_multi_state(self):
|
|
'''
|
|
Test the error with multiple states of the same type
|
|
'''
|
|
ret = self.run_function('state.sls', mods='fuzz.multi_state')
|
|
# Verify that the return is a list, aka, an error
|
|
self.assertIsInstance(ret, list)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(CompileTest)
|