mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Test to make sure we're outputting kwargs on the user.delete documentation.
This commit is contained in:
parent
905fb835cd
commit
325902c169
1 changed files with 11 additions and 2 deletions
|
@ -10,7 +10,7 @@
|
|||
import sys
|
||||
|
||||
# Import salt libs
|
||||
from saltunittest import TestLoader, TextTestRunner
|
||||
from saltunittest import TestLoader, TextTestRunner, skipIf
|
||||
import integration
|
||||
from integration import TestDaemon
|
||||
|
||||
|
@ -29,10 +29,19 @@ class CallTest(integration.ShellCase, integration.ShellCaseCommonTestsMixIn):
|
|||
out = self.run_call('--text-out test.fib 3')
|
||||
self.assertEqual("local: ([0, 1, 1, 2]", ''.join(out).rsplit(",", 1)[0])
|
||||
|
||||
@skipIf(sys.platform.startswith('win'), 'This test does not apply on Win')
|
||||
def test_user_delete_kw_output(self):
|
||||
ret = self.run_call('-d user.delete')
|
||||
self.assertIn(
|
||||
'salt \'*\' user.delete name remove=True force=True',
|
||||
''.join(ret)
|
||||
)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
loader = TestLoader()
|
||||
tests = loader.loadTestsFromTestCase(CallTest)
|
||||
print('Setting up Salt daemons to execute tests')
|
||||
with TestDaemon():
|
||||
runner = TextTestRunner(verbosity=1).run(tests)
|
||||
sys.exit(runner.wasSuccessful())
|
||||
sys.exit(runner.wasSuccessful())
|
||||
|
|
Loading…
Add table
Reference in a new issue