backuper/utils_test.go

13 lines
227 B
Go
Raw Normal View History

2023-03-11 14:13:35 +05:00
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestSizeToApproxHuman(t *testing.T) {
assert.Equal(t, "1.0 KiB", sizeToApproxHuman(1024))
assert.Equal(t, "1.1 KiB", sizeToApproxHuman(1126))
}