Add some test data that has unicode values

pull/4420/head
Toshio Kuratomi 2015-12-02 21:07:41 -08:00
parent 9b81c35d06
commit 5fdfe6a0f2
1 changed files with 4 additions and 0 deletions

View File

@ -69,6 +69,8 @@ class TestRemoveValues(unittest.TestCase):
'three': ['amigos', 'musketeers', None, 'three': ['amigos', 'musketeers', None,
{'ping': 'pong', 'base': ['balls', 'raquets']}]}, {'ping': 'pong', 'base': ['balls', 'raquets']}]},
frozenset(['nope'])), frozenset(['nope'])),
('Toshio くら', frozenset(['とみ'])),
(u'Toshio くら', frozenset(['とみ'])),
) )
dataset_remove = ( dataset_remove = (
('string', frozenset(['string']), OMIT), ('string', frozenset(['string']), OMIT),
@ -94,6 +96,8 @@ class TestRemoveValues(unittest.TestCase):
('This sentence has an enigma wrapped in a mystery inside of a secret. - mr mystery', ('This sentence has an enigma wrapped in a mystery inside of a secret. - mr mystery',
frozenset(['enigma', 'mystery', 'secret']), frozenset(['enigma', 'mystery', 'secret']),
'This sentence has an ******** wrapped in a ******** inside of a ********. - mr ********'), 'This sentence has an ******** wrapped in a ******** inside of a ********. - mr ********'),
('Toshio くらとみ', frozenset(['くらとみ']), 'Toshio ********'),
(u'Toshio くらとみ', frozenset(['くらとみ']), u'Toshio ********'),
) )
def test_no_removal(self): def test_no_removal(self):