修复域名服务集群检测新版本节点的Bug

This commit is contained in:
GoEdgeLab
2021-06-03 22:08:38 +08:00
parent 3131343056
commit 5412c9c622
5 changed files with 75 additions and 10 deletions

View File

@@ -2,8 +2,16 @@ package installers
import "testing"
func TestDeployManager_LoadFiles(t *testing.T) {
files := NewDeployManager().LoadFiles()
func TestDeployManager_LoadNodeFiles(t *testing.T) {
files := NewDeployManager().LoadNodeFiles()
for _, file := range files {
t.Logf("%#v", file)
}
}
func TestDeployManager_LoadNSNodeFiles(t *testing.T) {
files := NewDeployManager().LoadNSNodeFiles()
for _, file := range files {
t.Logf("%#v", file)
}