go-github-selfupdate/selfupdate/e2e_test.go

17 lines
248 B
Go
Raw Normal View History

2017-12-28 08:49:01 +00:00
package selfupdate
import (
"os/exec"
"testing"
)
func init() {
if err := exec.Command("go", "build", "../cmd/selfupdate-example/main.go").Run(); err != nil {
panic(err)
}
}
func TestRunSelfUpdateExample(t *testing.T) {
t.Fatal("TODO")
}