(t *testing.T)
| 15 | } |
| 16 | |
| 17 | func TestBoundingCapabilities(t *testing.T) { |
| 18 | caps, err := BoundingSet() |
| 19 | require.Nil(t, err) |
| 20 | assert.True(t, len(caps) > 0) |
| 21 | } |
| 22 | |
| 23 | func TestMergeCapabilitiesDropVerify(t *testing.T) { |
| 24 | adds := []string{"CAP_SETUID", "CAP_SYS_ADMIN"} |
nothing calls this directly
no test coverage detected
searching dependent graphs…