aboutsummaryrefslogtreecommitdiffstats
path: root/baro_tests
diff options
context:
space:
mode:
Diffstat (limited to 'baro_tests')
-rw-r--r--baro_tests/__init__.py0
-rw-r--r--baro_tests/collectd.py15
2 files changed, 15 insertions, 0 deletions
diff --git a/baro_tests/__init__.py b/baro_tests/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/baro_tests/__init__.py
diff --git a/baro_tests/collectd.py b/baro_tests/collectd.py
new file mode 100644
index 00000000..5631cf55
--- /dev/null
+++ b/baro_tests/collectd.py
@@ -0,0 +1,15 @@
+#!/usr/bin/python
+
+import sys
+
+
+def main(logger):
+ logger.info("Running Baromtercollectd test suite...")
+ #
+ # TODO: implementation
+ #
+ logger.info("Test suite successfully completed.")
+ return 0
+
+if __name__ == '__main__':
+ sys.exit(main())