summaryrefslogtreecommitdiff
path: root/sleekxmpp/xmlstream/testclient.py
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-05-17 22:27:03 -0700
committerLance Stout <lancestout@gmail.com>2012-05-17 22:27:03 -0700
commit678e529efc0e6fff65133de6769a5596034d90c6 (patch)
treec0d7e280aad015238aaa18aea591e41019cd8f31 /sleekxmpp/xmlstream/testclient.py
parent6ddb430fefff83f153adefaf0b15d2782851276c (diff)
downloadslixmpp-678e529efc0e6fff65133de6769a5596034d90c6.tar.gz
slixmpp-678e529efc0e6fff65133de6769a5596034d90c6.tar.bz2
slixmpp-678e529efc0e6fff65133de6769a5596034d90c6.tar.xz
slixmpp-678e529efc0e6fff65133de6769a5596034d90c6.zip
Remove unused xmlstream test client.
It's in the repo history if we need it later.
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()