aboutsummaryrefslogtreecommitdiffstats
path: root/common/common_test.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-22 20:32:52 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-22 20:32:52 +0800
commit08b21acff1ca397e775e926e0f9a96deaa9820fd (patch)
treec7d0c97159b8d54ac04bc03c2e3b8f85b3c4e241 /common/common_test.go
parent9682a3ef3ec72a871708a9bba1133fa59b58ccb5 (diff)
downloadgo-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.gz
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.bz2
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.lz
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.xz
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.tar.zst
go-tangerine-08b21acff1ca397e775e926e0f9a96deaa9820fd.zip
Move ToHex/FromHex into bytes
Diffstat (limited to 'common/common_test.go')
-rw-r--r--common/common_test.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/common/common_test.go b/common/common_test.go
index c7ba87f90..0fb5c56f0 100644
--- a/common/common_test.go
+++ b/common/common_test.go
@@ -1,10 +1,8 @@
package common
import (
- "bytes"
"math/big"
"os"
- "testing"
checker "gopkg.in/check.v1"
)
@@ -68,22 +66,3 @@ 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)
- }
-}