(t *testing.T)
| 188 | } |
| 189 | |
| 190 | func TestPrettyPrintWithConfigsAndSecrets(t *testing.T) { |
| 191 | s := formatServiceInspect(t, newFormat("pretty"), time.Now()) |
| 192 | assert.Check(t, is.Contains(s, "Log Driver:"), "Pretty print missing Log Driver") |
| 193 | assert.Check(t, is.Contains(s, "Configs:"), "Pretty print missing configs") |
| 194 | assert.Check(t, is.Contains(s, "Secrets:"), "Pretty print missing secrets") |
| 195 | assert.Check(t, is.Contains(s, "Healthcheck:"), "Pretty print missing healthcheck") |
| 196 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…