(self)
| 181 | |
| 182 | @requires_resource('console') |
| 183 | def test_input(self): |
| 184 | # ASCII |
| 185 | self.assertStdinRoundTrip('abc123') |
| 186 | # Non-ASCII |
| 187 | self.assertStdinRoundTrip('ϼўТλФЙ') |
| 188 | # Combining characters |
| 189 | self.assertStdinRoundTrip('A͏B ﬖ̳AA̝') |
| 190 | |
| 191 | # bpo-38325 |
| 192 | @unittest.skipIf(True, "Handling Non-BMP characters is broken") |
nothing calls this directly
no test coverage detected