sandbox_unsupported_test.go 262 B

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