diff options
author | Vitalik Buterin <v@buterin.com> | 2013-12-31 10:09:40 +0800 |
---|---|---|
committer | Vitalik Buterin <v@buterin.com> | 2013-12-31 10:09:40 +0800 |
commit | 2c81698f31e7e579335a2ab8706f96397a68f018 (patch) | |
tree | 14b5ea49e6f45357e98b9bd31e09dbdc8f7ef5c4 /rlptest.txt | |
download | dexon-2c81698f31e7e579335a2ab8706f96397a68f018.tar dexon-2c81698f31e7e579335a2ab8706f96397a68f018.tar.gz dexon-2c81698f31e7e579335a2ab8706f96397a68f018.tar.bz2 dexon-2c81698f31e7e579335a2ab8706f96397a68f018.tar.lz dexon-2c81698f31e7e579335a2ab8706f96397a68f018.tar.xz dexon-2c81698f31e7e579335a2ab8706f96397a68f018.tar.zst dexon-2c81698f31e7e579335a2ab8706f96397a68f018.zip |
Added first three tests
Diffstat (limited to 'rlptest.txt')
-rw-r--r-- | rlptest.txt | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/rlptest.txt b/rlptest.txt new file mode 100644 index 000000000..6767c2370 --- /dev/null +++ b/rlptest.txt @@ -0,0 +1,50 @@ +[ + [ + "cat", + "43636174" + ], + [ + "dog", + "43646f67" + ], + [ + [ "cat", "dog" ], + "824363617443646f67" + ], + [ + 1, + "01" + ], + [ + 10, + "0a" + ], + [ + 100, + "1864" + ], + [ + 1000, + "1903e8" + ], + [ + 115792089237316195423570985008687907853269984665640564039457584007913129639935, + "37ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" + ], + [ + 115792089237316195423570985008687907853269984665640564039457584007913129639936, + "38010000000000000000000000000000000000000000000000000000000000000000" + ], + [ + [ 1, 2, [] ], + "83010280" + ], + [ + [ [ [], [] ], [] ], + "8282808080" + ], + [ + [ "zw", [ 4 ], "wz" ], + "83427a77810442777a" + ] +] |