fileserver.envs
(self)
| 59 | |
| 60 | @pytest.mark.slow_test |
| 61 | def test_envs(self): |
| 62 | """ |
| 63 | fileserver.envs |
| 64 | """ |
| 65 | ret = self.run_run_plus(fun="fileserver.envs") |
| 66 | self.assertIsInstance(ret["return"], list) |
| 67 | |
| 68 | # Backend submitted as a string |
| 69 | ret = self.run_run_plus(fun="fileserver.envs", backend="roots") |
| 70 | self.assertIsInstance(ret["return"], list) |
| 71 | |
| 72 | # Backend submitted as a list |
| 73 | ret = self.run_run_plus(fun="fileserver.envs", backend=["roots"]) |
| 74 | self.assertIsInstance(ret["return"], list) |
| 75 | |
| 76 | @pytest.mark.slow_test |
| 77 | def test_clear_file_list_cache(self): |
nothing calls this directly
no test coverage detected