Files
EdgeAPI/internal/installers/deploy_manager_test.go

24 lines
485 B
Go
Raw Permalink Normal View History

2020-10-28 12:35:36 +08:00
package installers
import "testing"
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()
2020-10-28 12:35:36 +08:00
for _, file := range files {
t.Logf("%#v", file)
}
}
2021-07-22 18:42:57 +08:00
func TestDeployManager_FindNSNodeFile(t *testing.T) {
file := NewDeployManager().FindNSNodeFile("linux", "amd64")
t.Log(file)
}