From dc316dcfeb04619d659ac8768b62eaf595f1156f Mon Sep 17 00:00:00 2001 From: debris Date: Thu, 3 Dec 2015 06:13:27 +0100 Subject: [PATCH] additional simple json tests --- json-tests/json/rlp/empty.json | 9 +++++++++ json-tests/json/rlp/integer.json | 10 ++++++++++ 2 files changed, 19 insertions(+) create mode 100644 json-tests/json/rlp/empty.json create mode 100644 json-tests/json/rlp/integer.json diff --git a/json-tests/json/rlp/empty.json b/json-tests/json/rlp/empty.json new file mode 100644 index 000000000..19cbf4185 --- /dev/null +++ b/json-tests/json/rlp/empty.json @@ -0,0 +1,9 @@ +{ + "input": + [ + { + "operation": "append_empty" + } + ], + "output": "0x80" +} diff --git a/json-tests/json/rlp/integer.json b/json-tests/json/rlp/integer.json new file mode 100644 index 000000000..1effa4a1e --- /dev/null +++ b/json-tests/json/rlp/integer.json @@ -0,0 +1,10 @@ +{ + "input": + [ + { + "operation": "append", + "value": "0x0400" + } + ], + "output": "0x820400" +}