(self)
| 223 | class IsRunningTests(TestBase): |
| 224 | |
| 225 | def test_main(self): |
| 226 | main, *_ = _interpreters.get_main() |
| 227 | self.assertTrue(_interpreters.is_running(main)) |
| 228 | |
| 229 | @unittest.skip('Fails on FreeBSD') |
| 230 | def test_subinterpreter(self): |
nothing calls this directly
no test coverage detected