(t *testing.T)
| 187 | } |
| 188 | |
| 189 | func TestUnmountMounts(t *testing.T) { |
| 190 | testutil.RequiresRoot(t) |
| 191 | |
| 192 | target, mounts := setupMounts(t) |
| 193 | if err := UnmountMounts(mounts, target, 0); err != nil { |
| 194 | t.Fatal(err) |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | func TestUnmountRecursive(t *testing.T) { |
| 199 | testutil.RequiresRoot(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…