tests: Update sav without escaped `/` characters in a string
[nit.git] / tests / sav / test_json_deserialization_alt2.res
1 # Nit:
2 <A: true a 0.123 1234 asdf false p4ssw0rd>
3
4 # Json:
5 {"b": true, "c": "a", "f": 0.123, "i": 1234, "s": "asdf", "n": null}
6
7 # Nit:
8 <B: <A: false b 123.123 2345 hjkl true p4ssw0rd> 1111 qwer>
9
10 # Json:
11 {"b": false, "c": "b", "f": 123.123, "i": 2345, "s": "hjkl", "n": 12, "ii": 1111, "ss": "qwer"}
12
13 # Nit:
14 <C: <A: true a 0.123 1234 asdf false p4ssw0rd> <B: <A: false b 123.123 2345 hjkl true p4ssw0rd> 1111 qwer>>
15
16 # Json:
17 {"a": {"b": true, "c": "a", "f": 0.123, "i": 1234, "s": "asdf", "n": null}, "b": {"b": false, "c": "b", "f": 123.123, "i": 2345, "s": "hjkl", "n": 12, "ii": 1111, "ss": "qwer"}, "aa": {"b": true, "c": "a", "f": 0.123, "i": 1234, "s": "asdf", "n": null}}
18
19 # Nit:
20 <D: <B: <A: false b 123.123 2345 new line ->
21 <- false p4ssw0rd> 1111         f"\r\/> true>
22
23 # Json:
24 {"b": false, "c": "b", "f": 123.123, "i": 2345, "s": "new line ->\n<-", "n": null, "ii": 1111, "ss": "\tf\"\r\\/", "d": null}
25
26 # Nit:
27 <E: a: hello, 1234, 123.4; b: hella, 2345, 234.5>
28
29 # Json:
30 {"a": ["hello", 1234, 123.4], "b": ["hella", 2345, 234.5]}
31
32 # Nit:
33 <E: 2222>
34
35 # Json:
36 {"n": 2222}
37
38 # Nit:
39 <E: 33.33>
40
41 # Json:
42 {"n": 33.33}
43
44 # Nit:
45 <G: hs: -1, 0; s: one, two; hm: one. 1, two. 2; am: three. 3, four. 4>
46
47 # Json:
48 {"hs": [-1, 0], "s": ["one", "two"], "hm": {"one": 1, "two": 2}, "am": {"three": "3", "four": "4"}}
49