12345678910111213141516171819 |
- //go:build !windows
- package main
- import (
- "testing"
- "github.com/moby/sys/mount"
- )
- func mountWrapper(t *testing.T, device, target, mType, options string) error {
- t.Helper()
- err := mount.Mount(device, target, mType, options)
- if err != nil {
- return err
- }
- t.Cleanup(func() { _ = mount.Unmount(target) })
- return nil
- }
|