Ensure that results are decoded TODO: maybe move this behavior to ModuleCase itself?
(self, *args, **kwargs)
| 130 | subprocess.check_call(["git", "checkout", "--quiet", "master"]) |
| 131 | |
| 132 | def run_function(self, *args, **kwargs): # pylint: disable=arguments-differ |
| 133 | """ |
| 134 | Ensure that results are decoded |
| 135 | |
| 136 | TODO: maybe move this behavior to ModuleCase itself? |
| 137 | """ |
| 138 | return salt.utils.data.decode(super().run_function(*args, **kwargs)) |
| 139 | |
| 140 | @pytest.mark.slow_test |
| 141 | def test_add_dir(self): |
no outgoing calls
no test coverage detected