(t *testing.T)
| 55 | } |
| 56 | |
| 57 | func TestDisplayTrustRootNoRoot(t *testing.T) { |
| 58 | buffer := new(bytes.Buffer) |
| 59 | err := displayTrustRoot(buffer, client.SwarmInspectResult{}) |
| 60 | assert.Error(t, err, "no CA information available") |
| 61 | } |
| 62 | |
| 63 | type invalidCATestCases struct { |
| 64 | args []string |
nothing calls this directly
no test coverage detected
searching dependent graphs…