aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_reader_nonUTF8.py
blob: 6f2419aa19d73542b8f315a3cdf11f787ff422ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: utf-8 -*-
from __future__ import absolute_import, print_function, unicode_literals
import yamlish
import test
import unittest

test_data_list = [{
    "name": 'Non UTF8 test',
    "in": [b"--- macro `BR\xc3\xc2\xa0fbi' not defined",
           '...', ],
    "out": "macro `BR\xa0fbi' not defined",
}]

""

class TestReader(unittest.TestCase):  # IGNORE:C0111
    pass

test.generate_testsuite(test_data_list, TestReader, yamlish.load,
                        options={'ignore_wrong_characters': True})

if __name__ == "__main__":
    unittest.main()