backblaze-backup/cmd/check_test.go

12 lines
175 B
Go
Raw Permalink Normal View History

package cmd
import (
"testing"
"github.com/stretchr/testify/require"
)
func Test_prettyByteSize(t *testing.T) {
require.Equal(t, prettyByteSize(1505099776), "1.4GiB")
}