diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-15 05:01:52 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-15 05:01:52 +0800 |
commit | 2a9fc7baa908d64ff1ddae44641024114d3ec88d (patch) | |
tree | 7b94082bd16765984046fa3c04c2ed57812d8c89 /ethutil/size_test.go | |
parent | 56aa24002de357c24a9644a49d5702c8d4663909 (diff) | |
download | go-tangerine-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.gz go-tangerine-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.zst go-tangerine-2a9fc7baa908d64ff1ddae44641024114d3ec88d.zip |
Merge branch 'develop' of https://github.com/tgerring/go-ethereum
Diffstat (limited to 'ethutil/size_test.go')
-rw-r--r-- | ethutil/size_test.go | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/ethutil/size_test.go b/ethutil/size_test.go index 82aa1c653..e0f28abc5 100644 --- a/ethutil/size_test.go +++ b/ethutil/size_test.go @@ -1,12 +1,23 @@ package ethutil import ( - "fmt" - "testing" + checker "gopkg.in/check.v1" ) -func TestSize(t *testing.T) { - fmt.Println(StorageSize(2381273)) - fmt.Println(StorageSize(2192)) - fmt.Println(StorageSize(12)) +type SizeSuite struct{} + +var _ = checker.Suite(&SizeSuite{}) + +func (s *SizeSuite) TestStorageSizeString(c *checker.C) { + data1 := 2381273 + data2 := 2192 + data3 := 12 + + exp1 := "2.38 mB" + exp2 := "2.19 kB" + exp3 := "12.00 B" + + c.Assert(StorageSize(data1).String(), checker.Equals, exp1) + c.Assert(StorageSize(data2).String(), checker.Equals, exp2) + c.Assert(StorageSize(data3).String(), checker.Equals, exp3) } |