This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/installers/deploy_manager_test.go
T
2020-10-28 12:35:36 +08:00

11 lines
185 B
Go

package installers
import "testing"
func TestDeployManager_LoadFiles(t *testing.T) {
files := NewDeployManager().LoadFiles()
for _, file := range files {
t.Logf("%#v", file)
}
}