mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
25 lines
670 B
Python
25 lines
670 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing libs
|
|
from tests.support.case import ModuleCase
|
|
from tests.support.helpers import requires_salt_modules, skip_if_not_root
|
|
|
|
|
|
@skip_if_not_root
|
|
@requires_salt_modules('rabbitmq')
|
|
class RabbitModuleTest(ModuleCase):
|
|
'''
|
|
Validates the rabbitmqctl functions.
|
|
To run these tests, you will need to be able to access the rabbitmqctl
|
|
commands.
|
|
'''
|
|
def test_user_exists(self):
|
|
'''
|
|
Find out whether a user exists.
|
|
'''
|
|
ret = self.run_function('rabbitmq.user_exists', ['null_user'])
|
|
self.assertEqual(ret, False)
|