forked from p93542168/wheat-cache
11 lines
121 B
Go
11 lines
121 B
Go
|
package util
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestParseSizeToBit(t *testing.T) {
|
||
|
fmt.Print(ParseSizeToBit("18KB"))
|
||
|
}
|