summary refs log tree commit diff stats
path: root/tests/accept/compile/tsockets.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/compile/tsockets.nim')
-rwxr-xr-xtests/accept/compile/tsockets.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/accept/compile/tsockets.nim b/tests/accept/compile/tsockets.nim
deleted file mode 100755
index cc7d18b87..000000000
--- a/tests/accept/compile/tsockets.nim
+++ /dev/null
@@ -1,11 +0,0 @@
-import sockets
-var s: TSocket
-s = socket()
-
-s.connect("www.google.com", TPort(80))
-
-var recvData: string = ""
-echo(s.recvLine(recvData))
-echo(recvData)
-
-