summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/testclient.py
diff options
context:
space:
mode:
Diffstat (limited to 'sleekxmpp/xmlstream/testclient.py')
-rw-r--r--sleekxmpp/xmlstream/testclient.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/sleekxmpp/xmlstream/testclient.py b/sleekxmpp/xmlstream/testclient.py
deleted file mode 100644
index 50eb6c50..00000000
--- a/sleekxmpp/xmlstream/testclient.py
+++ /dev/null
@@ -1,13 +0,0 @@
-import socket
-import time
-
-s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
-s.connect(('localhost', 5228))
-s.send("<stream>")
-#s.flush()
-s.send("<test/>")
-s.send("<test/>")
-s.send("<test/>")
-s.send("</stream>")
-#s.flush()
-s.close()