unzip_test.go 146 Bytes
Newer Older
luxq's avatar
luxq committed
1 2 3 4 5 6 7 8 9 10 11 12 13
package utils

import "testing"

func TestUnzip(t *testing.T) {

	f := "a.zip"
	d := "a"
	err := Unzip(f, d)
	if err != nil {
		t.Error(err)
	}
}