diff --git a/basis/io/sockets/unix/unix-tests.factor b/basis/io/sockets/unix/unix-tests.factor new file mode 100644 index 0000000000..e7176e6c09 --- /dev/null +++ b/basis/io/sockets/unix/unix-tests.factor @@ -0,0 +1,9 @@ +USING: accessors io.encodings.binary io.sockets kernel +tools.test ; +IN: io.sockets.unix + +[ + T{ inet f "127.0.0.1" 5000 } binary [ ] with-client +] [ + message>> "Connection refused" = +] must-fail-with