diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-11 08:10:58 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-11 08:10:58 +0800 |
commit | 64933321fb58ab92cf505a4519fe93ae69e1c71d (patch) | |
tree | ccdb638c5fa636b6b88cd39994a470aebd3815e3 /rpc/util_test.go | |
parent | 7e0ccc9de53e788ddc1879248bceb33a9ccdbae0 (diff) | |
parent | 499f816e3034c3e781f8ad35da070c9989cf6e3c (diff) | |
download | dexon-64933321fb58ab92cf505a4519fe93ae69e1c71d.tar dexon-64933321fb58ab92cf505a4519fe93ae69e1c71d.tar.gz dexon-64933321fb58ab92cf505a4519fe93ae69e1c71d.tar.bz2 dexon-64933321fb58ab92cf505a4519fe93ae69e1c71d.tar.lz dexon-64933321fb58ab92cf505a4519fe93ae69e1c71d.tar.xz dexon-64933321fb58ab92cf505a4519fe93ae69e1c71d.tar.zst dexon-64933321fb58ab92cf505a4519fe93ae69e1c71d.zip |
Merge branch 'rpcfrontier' of github.com-obscure:ethereum/go-ethereum into rpcfrontier
Diffstat (limited to 'rpc/util_test.go')
-rw-r--r-- | rpc/util_test.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/rpc/util_test.go b/rpc/util_test.go new file mode 100644 index 000000000..b0a4979b5 --- /dev/null +++ b/rpc/util_test.go @@ -0,0 +1,25 @@ +package rpc + +import ( + "bytes" + "testing" +) + +//fromHex +func TestFromHex(t *testing.T) { + input := "0x01" + expected := []byte{1} + result := fromHex(input) + if bytes.Compare(expected, result) != 0 { + t.Errorf("Expected % x got % x", expected, result) + } +} + +func TestFromHexOddLength(t *testing.T) { + input := "0x1" + expected := []byte{1} + result := fromHex(input) + if bytes.Compare(expected, result) != 0 { + t.Errorf("Expected % x got % x", expected, result) + } +} |