aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/common_test.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-03-14 18:46:32 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-03-14 18:46:32 +0800
commit51df765e3892285bda6d40340dc6febfcd2e7ce6 (patch)
treeeb55d41ec2f62babef19af22e7fadf5280935d47 /ethutil/common_test.go
parentb927c29469864424a97c06ff2f31e2d882b01cd7 (diff)
parent9754e7aca79a3d24ac17589f548072a4dca68fbb (diff)
downloadgo-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.gz
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.bz2
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.lz
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.xz
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.tar.zst
go-tangerine-51df765e3892285bda6d40340dc6febfcd2e7ce6.zip
Merge pull request #481 from maran/feature/fromHexDry
DRY-up the use of fromHex in the project
Diffstat (limited to 'ethutil/common_test.go')
-rw-r--r--ethutil/common_test.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/ethutil/common_test.go b/ethutil/common_test.go
index c2b6077e9..20064b1e7 100644
--- a/ethutil/common_test.go
+++ b/ethutil/common_test.go
@@ -1,8 +1,10 @@
package ethutil
import (
+ "bytes"
"math/big"
"os"
+ "testing"
checker "gopkg.in/check.v1"
)
@@ -66,3 +68,22 @@ func (s *CommonSuite) TestLarge(c *checker.C) {
c.Assert(adalarge, checker.Equals, "10000E7 Einstein")
c.Assert(weilarge, checker.Equals, "100 Babbage")
}
+
+//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)
+ }
+}