chiark / gitweb /
utf32_word_split() and utf8_word_split() splits a string into words
[disorder] / tests / version.py
CommitLineData
eee9d4b3
RK
1#! /usr/bin/env python
2import dtest,time,disorder
3
4def test():
5 """Ask the server its version number"""
6 time.sleep(2) # give the daemon a chance to start up
7 c = disorder.client()
8 v = c.version()
9 print "Server version: %s" % v
10
11if __name__ == '__main__':
12 dtest.run(test)