(self)
| 2181 | self.assertIn("in <module>", output) |
| 2182 | |
| 2183 | def test_null_byte(self): |
| 2184 | output, exit_code = self.run_repl("\x00\nexit()\n") |
| 2185 | self.assertEqual(exit_code, 0) |
| 2186 | self.assertNotIn("TypeError", output) |
| 2187 | |
| 2188 | @force_not_colorized |
| 2189 | def test_non_string_suggestion_candidates(self): |
nothing calls this directly
no test coverage detected