(self)
| 87 | self._check_conf(config) |
| 88 | |
| 89 | def test_json(self): |
| 90 | fd, fname = mkstemp(".json", prefix="μnïcø∂e") |
| 91 | f = os.fdopen(fd, "w") |
| 92 | f.write(json1file) |
| 93 | f.close() |
| 94 | # Unlink the file |
| 95 | cl = JSONFileConfigLoader(fname, log=log) |
| 96 | config = cl.load_config() |
| 97 | self._check_conf(config) |
| 98 | |
| 99 | def test_context_manager(self): |
| 100 | fd, fname = mkstemp(".json", prefix="μnïcø∂e") |
nothing calls this directly
no test coverage detected