Ensure that results are decoded TODO: maybe move this behavior to ModuleCase itself?
(self, *args, **kwargs)
| 31 | """ |
| 32 | |
| 33 | def run_function(self, *args, **kwargs): # pylint: disable=arguments-differ |
| 34 | """ |
| 35 | Ensure that results are decoded |
| 36 | |
| 37 | TODO: maybe move this behavior to ModuleCase itself? |
| 38 | """ |
| 39 | return salt.utils.data.decode(super().run_function(*args, **kwargs)) |
| 40 | |
| 41 | @with_tempfile() |
| 42 | @pytest.mark.slow_test |
no outgoing calls
no test coverage detected