(title string, items []Item)
| 42 | } |
| 43 | |
| 44 | func validateItemsScripts(title string, items []Item) { |
| 45 | for _, i := range items { |
| 46 | validateItemScripts(title, i) |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func validateItemScripts(title string, i Item) { |
| 51 | if i.InitScript != nil && i.MultiStepInitScript != nil { |
no test coverage detected