mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-12 16:10:49 -07:00
Add some test data that has unicode values
This commit is contained in:
parent
9b81c35d06
commit
5fdfe6a0f2
1 changed files with 4 additions and 0 deletions
|
@ -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):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue