github.com/pwn-term/docker@v0.0.0-20210616085119-6e977cce2565/libnetwork/osl/sandbox_unsupported_test.go (about)

     1  // +build !linux
     2  
     3  package osl
     4  
     5  import (
     6  	"errors"
     7  	"testing"
     8  )
     9  
    10  var ErrNotImplemented = errors.New("not implemented")
    11  
    12  func newKey(t *testing.T) (string, error) {
    13  	return nil, ErrNotImplemented
    14  }
    15  
    16  func verifySandbox(t *testing.T, s Sandbox) {
    17  	return
    18  }