12 lines
232 B
Go
12 lines
232 B
Go
package compression
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestTGZHandler_UNTarGZTo(t *testing.T) {
|
|
z := &TGZHandler{}
|
|
//z.UNTarGZTo("./testdata/test.tar.gz", "./testdata/v2.0.0")
|
|
z.UNTarGZ("./testdata/test.tar.gz", "./testdata/v2.0.0")
|
|
}
|