1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package pretty
import (
"testing"
)
func TestBytes(t *testing.T) {
tests := []struct {
Expected string
Actual string
}{
{"128 Byte", Bytes(128)},
{"128.00 KiB", Bytes(128 * 1024)},
{"128.00 MiB", Bytes(128 * 1024 * 1024)},
{"128.00 GiB", Bytes(128 * 1024 * 1024 * 1024)},
{"128.00 TiB", Bytes(128 * 1024 * 1024 * 1024 * 1024)},
{"131072.00 TiB", Bytes(128 * 1024 * 1024 * 1024 * 1024 * 1024)},
}
for i, tc := range tests {
if tc.Expected != tc.Actual {
t.Fatalf("Test %v failed: %v", i, tc)
}
}
}
|