(dirPath string)
| 45 | } |
| 46 | |
| 47 | func getFilesFromDir(dirPath string) []string { |
| 48 | files, err := utils.GetFilesWithSuffix(dirPath, "json", "yaml", "yml") |
| 49 | if err != nil { |
| 50 | panic(err) |
| 51 | } |
| 52 | return files |
| 53 | } |
| 54 | |
| 55 | var _ = Describe("Test Renderer via API", func() { |
| 56 | t := &render.TemplatingData{ |
no test coverage detected