summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
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)