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

This commit is contained in:
刘祥超
2021-06-03 22:08:38 +08:00
parent ef5630ba4a
commit b46b5dc05f
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)
}