(self)
| 1157 | self.assertEqual(output, conv(result_2004_01_text)) |
| 1158 | |
| 1159 | def test_option_encoding(self): |
| 1160 | self.assertFailure('-e') |
| 1161 | self.assertFailure('--encoding') |
| 1162 | for run in self.runners: |
| 1163 | output = run('--encoding', 'utf-16-le', '2004') |
| 1164 | self.assertEqual(output, result_2004_text.encode('utf-16-le')) |
| 1165 | |
| 1166 | def test_option_locale(self): |
| 1167 | self.assertFailure('-L') |
nothing calls this directly
no test coverage detected