(self)
| 247 | self.assertEqual(out.strip(), 'True') |
| 248 | |
| 249 | def test_already_destroyed(self): |
| 250 | interp = _interpreters.create() |
| 251 | _interpreters.destroy(interp) |
| 252 | with self.assertRaises(InterpreterNotFoundError): |
| 253 | _interpreters.is_running(interp) |
| 254 | |
| 255 | def test_does_not_exist(self): |
| 256 | with self.assertRaises(InterpreterNotFoundError): |
nothing calls this directly
no test coverage detected