Also some unicode tests for return_values()

This commit is contained in:
Toshio Kuratomi 2015-12-02 21:09:53 -08:00
parent 2c5c7b54f6
commit b9fbfaf64e

View file

@ -46,6 +46,8 @@ class TestReturnValues(unittest.TestCase):
'three': ['amigos', 'musketeers', None,
{'ping': 'pong', 'base': ('balls', 'raquets')}]},
frozenset(['1', 'dos', 'amigos', 'musketeers', 'pong', 'balls', 'raquets'])),
(u'Toshio くらとみ', frozenset(['Toshio くらとみ'])),
('Toshio くらとみ', frozenset(['Toshio くらとみ'])),
)
def test_return_values(self):