12345678910111213141516171819202122232425 |
- # -*- coding: utf-8 -*-
- # Import python libs
- from __future__ import absolute_import, print_function, unicode_literals
- import logging
- # Import Salt Testing libs
- from tests.support.case import ModuleCase, ShellCase
- from tests.support.helpers import slowTest
- log = logging.getLogger(__name__)
- class ExecutorTest(ModuleCase, ShellCase):
- def setup(self):
- self.run_function("saltutil.sync_all")
- @slowTest
- def test_executor(self):
- """
- test that dunders are set
- """
- data = self.run_call("test.arg --module-executors=arg")
- self.assertIn("test.arg fired", "".join(data))
|