summaryrefslogtreecommitdiff
path: root/common/files/bytesize_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'common/files/bytesize_test.go')
-rw-r--r--common/files/bytesize_test.go24
1 files changed, 0 insertions, 24 deletions
diff --git a/common/files/bytesize_test.go b/common/files/bytesize_test.go
deleted file mode 100644
index 970c242..0000000
--- a/common/files/bytesize_test.go
+++ /dev/null
@@ -1,24 +0,0 @@
-package files
-
-import (
- "testing"
-)
-
-func TestPrettyBytes(t *testing.T) {
- tests := []struct {
- Expected string
- Actual string
- }{
- {"128 Byte", PrettyBytes(128)},
- {"128.00 KiB", PrettyBytes(128 * 1024)},
- {"128.00 MiB", PrettyBytes(128 * 1024 * 1024)},
- {"128.00 GiB", PrettyBytes(128 * 1024 * 1024 * 1024)},
- {"128.00 TiB", PrettyBytes(128 * 1024 * 1024 * 1024 * 1024)},
- {"131072.00 TiB", PrettyBytes(128 * 1024 * 1024 * 1024 * 1024 * 1024)},
- }
- for i, tc := range tests {
- if tc.Expected != tc.Actual {
- t.Fatalf("Test %v failed: %v", i, tc)
- }
- }
-}