mirror of
https://github.com/chenjia404/go-p2ptunnel.git
synced 2025-09-29 04:32:15 +08:00
11 lines
192 B
Go
11 lines
192 B
Go
package update
|
|
|
|
import "testing"
|
|
|
|
func TestVerifySignature(t *testing.T) {
|
|
if v, e := VerifySignature("1.zip"); v != true {
|
|
t.Errorf(e.Error())
|
|
t.Errorf("VerifySignature")
|
|
}
|
|
}
|