pkg/archives/decompress_test.go
2023-09-18 15:58:52 +08:00

15 lines
163 B
Go

package archives
import (
"testing"
)
func TestDecZIP(t *testing.T) {
const (
src = "./pkg.zip"
dst = "./testing"
)
t.Log("res ->", DecZIP(src, dst))
}