(self)
| 205 | |
| 206 | @unittest.skipUnless(os_helper.FS_NONASCII, 'need os_helper.FS_NONASCII') |
| 207 | def test_non_ascii(self): |
| 208 | # Test handling of non-ascii data |
| 209 | command = ("assert(ord(%r) == %s)" |
| 210 | % (os_helper.FS_NONASCII, ord(os_helper.FS_NONASCII))) |
| 211 | assert_python_ok('-c', command) |
| 212 | |
| 213 | @unittest.skipUnless(os_helper.FS_NONASCII, 'need os_helper.FS_NONASCII') |
| 214 | def test_coding(self): |
nothing calls this directly
no test coverage detected