(self)
| 651 | self.assertEqual(content, expected) |
| 652 | |
| 653 | def test_already_running(self): |
| 654 | with _running(self.id): |
| 655 | with self.assertRaises(_interpreters.InterpreterError): |
| 656 | _interpreters.run_string(self.id, 'print("spam")') |
| 657 | |
| 658 | def test_does_not_exist(self): |
| 659 | id = 0 |
nothing calls this directly
no test coverage detected