阶段性提交

This commit is contained in:
刘祥超
2020-09-13 20:37:28 +08:00
parent 6f5faf66f7
commit 512a1ac013
89 changed files with 1364 additions and 12899 deletions

View File

@@ -0,0 +1,19 @@
package installers
import (
"testing"
"time"
)
func TestQueue_InstallNode(t *testing.T) {
queue := NewQueue()
err := queue.InstallNodeProcess(16)
if err != nil {
t.Fatal(err)
}
time.Sleep(1 * time.Second)
t.Log("OK")
}