mirror of
https://github.com/clearlinux/libnetwork.git
synced 2026-05-14 10:33:46 +00:00
21 lines
262 B
Go
21 lines
262 B
Go
// +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
|
|
}
|