(self)
| 170 | ) |
| 171 | |
| 172 | def test_v2raise(self): |
| 173 | fd, fname = mkstemp(".json", prefix="μnïcø∂e") |
| 174 | f = os.fdopen(fd, "w") |
| 175 | f.write(json2file) |
| 176 | f.close() |
| 177 | # Unlink the file |
| 178 | cl = JSONFileConfigLoader(fname, log=log) |
| 179 | with self.assertRaises(ValueError): |
| 180 | cl.load_config() |
| 181 | |
| 182 | |
| 183 | def _parse_int_or_str(v): |
nothing calls this directly
no test coverage detected