summaryrefslogtreecommitdiff
path: root/server_config_test.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-04-17 16:42:27 +0300
committerValery Piashchynski <[email protected]>2020-04-17 16:42:27 +0300
commit19c1f0e199b78c4f4b660c794bbbe5bd4fca58a5 (patch)
tree5329613070542403fb48803deff1c0b5ea19df2b /server_config_test.go
parentec4824c60f51254b91fd39bc5b32a74640ff0fd9 (diff)
remove windows check from sockets tests
Diffstat (limited to 'server_config_test.go')
-rw-r--r--server_config_test.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/server_config_test.go b/server_config_test.go
index 303eba90..c88f9082 100644
--- a/server_config_test.go
+++ b/server_config_test.go
@@ -2,7 +2,6 @@ package roadrunner
import (
"github.com/stretchr/testify/assert"
- "runtime"
"testing"
"time"
)
@@ -65,10 +64,6 @@ func Test_ServerConfig_SocketFactory(t *testing.T) {
}
func Test_ServerConfig_UnixSocketFactory(t *testing.T) {
- if runtime.GOOS == "windows" {
- t.Skip("not supported on " + runtime.GOOS)
- }
-
cfg := &ServerConfig{Relay: "unix://unix.sock"}
f, err := cfg.makeFactory()
if err != nil {
@@ -89,10 +84,6 @@ func Test_ServerConfig_UnixSocketFactory(t *testing.T) {
}
func Test_ServerConfig_ErrorFactory(t *testing.T) {
- if runtime.GOOS == "windows" {
- t.Skip("not supported on " + runtime.GOOS)
- }
-
cfg := &ServerConfig{Relay: "uni:unix.sock"}
f, err := cfg.makeFactory()
assert.Nil(t, f)