moby--moby/libnetwork/sandbox/sandbox_unsupported_test.go

21 lines
262 B
Go
Raw Normal View History

// +build !linux
package sandbox
import (
"errors"
"testing"
)
var (
ErrNotImplemented = errors.New("not implemented")
)
func newKey(t *testing.T) (string, error) {
return nil, ErrNotImplemented
}
func verifySandbox(t *testing.T, s Sandbox) {
return
}