mirror of
https://github.com/valitydev/salt.git
synced 2024-11-09 01:36:48 +00:00
cf03063bec
* Implement `SaltReturnAssertsMixIn.assertSaltNoneReturn` used in `tests.integration.states.cmd`. * Migrate `tests.integration.states.cmd` to use `SaltReturnAssertsMixIn`.
34 lines
735 B
Python
34 lines
735 B
Python
'''
|
|
Tests for the file state
|
|
'''
|
|
# Import salt libs
|
|
import integration
|
|
import tempfile
|
|
|
|
|
|
class CMDTest(integration.ModuleCase,
|
|
integration.SaltReturnAssertsMixIn):
|
|
'''
|
|
Validate the cmd state
|
|
'''
|
|
def test_run(self):
|
|
'''
|
|
cmd.run
|
|
'''
|
|
|
|
ret = self.run_state('cmd.run', name='ls', cwd=tempfile.gettempdir())
|
|
self.assertSaltTrueReturn(ret)
|
|
|
|
def test_test_run(self):
|
|
'''
|
|
cmd.run test interface
|
|
'''
|
|
ret = self.run_state('cmd.run', name='ls',
|
|
cwd=tempfile.gettempdir(), test=True)
|
|
self.assertSaltNoneReturn(ret)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(CMDTest)
|