9 lines
158 B
Go
9 lines
158 B
Go
package compression
|
|
|
|
import "testing"
|
|
|
|
func TestZipHandler_UnZipTo(t *testing.T) {
|
|
z := &ZipHandler{}
|
|
z.UnZip("./testdata/test.zip", "./testdata/v1.0.0")
|
|
}
|