pkg/archives/decompress_test.go

15 lines
163 B
Go
Raw Permalink Normal View History

2023-09-18 15:58:52 +08:00
package archives
2023-09-18 15:51:20 +08:00
import (
"testing"
)
func TestDecZIP(t *testing.T) {
const (
src = "./pkg.zip"
dst = "./testing"
)
t.Log("res ->", DecZIP(src, dst))
}