123456789101112131415161718192021222324 |
- # -*- coding: utf-8 -*-
- from __future__ import absolute_import, print_function, unicode_literals
- import pytest
- from tests.support.case import ModuleCase
- @pytest.mark.skip_if_not_root
- @pytest.mark.windows_whitelisted
- @pytest.mark.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)
|