(self, fs_encoding, expected=None)
| 974 | self.assertIn(executable, ["b''", repr(sys.executable.encode("ascii", "backslashreplace"))]) |
| 975 | |
| 976 | def check_fsencoding(self, fs_encoding, expected=None): |
| 977 | self.assertIsNotNone(fs_encoding) |
| 978 | codecs.lookup(fs_encoding) |
| 979 | if expected: |
| 980 | self.assertEqual(fs_encoding, expected) |
| 981 | |
| 982 | def test_getfilesystemencoding(self): |
| 983 | fs_encoding = sys.getfilesystemencoding() |
no test coverage detected