diff options
Diffstat (limited to 'container/dispatcher_test.go')
| -rw-r--r-- | container/dispatcher_test.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/container/dispatcher_test.go b/container/dispatcher_test.go index c8a7b492..49631854 100644 --- a/container/dispatcher_test.go +++ b/container/dispatcher_test.go @@ -468,6 +468,14 @@ func (k *kstub) mountTmpfs(fsname, target string, flags uintptr, size int, perm stub.CheckArg(k.Stub, "perm", perm, 4)) } +func (k *kstub) mountOverlay(target string, options [][2]string) error { + k.Helper() + return k.Expects("mountOverlay").Error( + stub.CheckArg(k.Stub, "target", target, 0), + stub.CheckArgReflect(k.Stub, "options", options, 1), + ) +} + func (k *kstub) ensureFile(name string, perm, pperm os.FileMode) error { k.Helper() return k.Expects("ensureFile").Error( |
