v2 / vlib / encoding / cbor / tests / cbor_wg / appA_mt2.edn
16 lines · 16 sloc · 315 bytes · 468855eef1db0ff73c62be2d1bf176ffa0e1478e
Raw
1{
2 "title": "mt2",
3 "description": "Byte strings, from RFC 8949 appendix A",
4 "tests": [
5 {
6 "description": "empty",
7 "encoded": h'40',
8 "decoded": h'',
9 },
10 {
11 "description": "four bytes in a byte string",
12 "encoded": h'4401020304',
13 "decoded": h'01020304',
14 },
15 ],
16}
17