summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2016-07-23 18:42:06 +0200
committerYves Fischer <yvesf-git@xapek.org>2016-07-23 18:42:40 +0200
commit76289024543fbfb6df3d07f61f15eabc623dd246 (patch)
tree5f7e7a86e42f26e8afe3b4437f77e9e4100280ee /test.py
parentf019accc6f20ef97e95b9b6a3f776aefb5ebd62b (diff)
downloadpyinflux-76289024543fbfb6df3d07f61f15eabc623dd246.tar.gz
pyinflux-76289024543fbfb6df3d07f61f15eabc623dd246.zip
restructure code
rename module to pyinflux split in client and parser package. the parser depends also on funcparserlib contains 3 examples of strange influxdb behavior
Diffstat (limited to 'test.py')
-rwxr-xr-xtest.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test.py b/test.py
new file mode 100755
index 0000000..a87b2e0
--- /dev/null
+++ b/test.py
@@ -0,0 +1,7 @@
+#!/usr/bin/env python3
+from doctest import testmod
+from pyinflux import client, parser
+
+if __name__ == '__main__':
+ testmod(m=client)
+ testmod(m=parser)