1
0
mirror of https://github.com/zrepl/zrepl.git synced 2025-06-07 02:18:01 +02:00
zrepl/util/socketpair/socketpair_test.go

19 lines
361 B
Go

package socketpair
import (
"testing"
"github.com/stretchr/testify/assert"
)
// This is test is mostly to verify that the assumption about
// net.FileConn returning *net.UnixConn for AF_UNIX FDs works.
func TestSocketPairWorks(t *testing.T) {
assert.NotPanics(t, func() {
a, b, err := SocketPair()
assert.NoError(t, err)
a.Close()
b.Close()
})
}