mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-02 15:21:25 -07:00
parent
642b183fb6
commit
6d94ae64ec
4 changed files with 3 additions and 4 deletions
|
@ -165,6 +165,8 @@ class TestUtils(unittest.TestCase):
|
|||
def test_parse_kv_basic(self):
|
||||
self.assertEqual(ansible.utils.parse_kv('a=simple b="with space" c="this=that"'),
|
||||
{'a': 'simple', 'b': 'with space', 'c': 'this=that'})
|
||||
self.assertEqual(ansible.utils.parse_kv('msg=АБВГД'),
|
||||
{'msg': 'АБВГД'})
|
||||
|
||||
|
||||
def test_jsonify(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue