Create file_list cache so we have something to clear
()
| 86 | |
| 87 | @contextlib.contextmanager |
| 88 | def gen_cache(): |
| 89 | """ |
| 90 | Create file_list cache so we have something to clear |
| 91 | """ |
| 92 | for saltenv in saltenvs: |
| 93 | self.run_run_plus(fun="fileserver.file_list", saltenv=saltenv) |
| 94 | yield |
| 95 | |
| 96 | # Test with no arguments |
| 97 | with gen_cache(): |
nothing calls this directly
no test coverage detected