mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
21 lines
501 B
Python
21 lines
501 B
Python
![]() |
# -*- coding: utf-8 -*-
|
||
|
"""Testing xonsh json hooks"""
|
||
|
import json
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from xonsh.tools import EnvPath
|
||
|
from xonsh.jsonutils import serialize_xonsh_json
|
||
|
|
||
|
|
||
|
|
||
|
@pytest.mark.parametrize('inp', [
|
||
|
42, "yo", ["hello"], {"x": 65},
|
||
|
EnvPath(["wakka", "jawaka"]),
|
||
|
["y", EnvPath(["wakka", "jawaka"])],
|
||
|
{"z": EnvPath(["wakka", "jawaka"])},
|
||
|
])
|
||
|
def test_serialize_xonsh_json_roundtrip(inp):
|
||
|
s = json.dumps(inp, default=serialize_xonsh_json)
|
||
|
obs = json.loads(s)
|
||
|
assert inp == obs
|