(self)
| 253 | _interpreters.is_running(interp) |
| 254 | |
| 255 | def test_does_not_exist(self): |
| 256 | with self.assertRaises(InterpreterNotFoundError): |
| 257 | _interpreters.is_running(1_000_000) |
| 258 | |
| 259 | def test_bad_id(self): |
| 260 | with self.assertRaises(ValueError): |
nothing calls this directly
no test coverage detected