Issue #20574: Add more tests for cp65001

This commit is contained in:
Victor Stinner 2014-03-17 23:16:02 +01:00
parent 7d00cc1a64
commit f8cbf78bbd
1 changed files with 6 additions and 0 deletions

View File

@ -2879,5 +2879,11 @@ def test_incremental(self):
self.assertEqual(decoded, ('abc', 3))
@unittest.skipUnless(sys.platform == 'win32',
'cp65001 is specific to Windows')
class CP65001Test(UTF8Test, unittest.TestCase):
encoding = "cp65001"
if __name__ == "__main__":
unittest.main()