diff options
Diffstat (limited to 'test.py')
-rwxr-xr-x | test.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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) |