(data map[string]types.NullString)
| 132 | } |
| 133 | |
| 134 | func (cmd RevisionCommand) displayMetaData(data map[string]types.NullString) { |
| 135 | if len(data) > 0 { |
| 136 | tableData := [][]string{} |
| 137 | for k, v := range data { |
| 138 | tableData = append(tableData, []string{fmt.Sprintf("%s:", k), v.Value}) |
| 139 | } |
| 140 | cmd.UI.DisplayKeyValueTable("", tableData, 3) |
| 141 | cmd.UI.DisplayNewline() |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | func (cmd RevisionCommand) revisionDeployed(revision resources.Revision, deployedRevisions []resources.Revision) bool { |
| 146 | for _, deployedRevision := range deployedRevisions { |
no test coverage detected