Create baro_tests module
[barometer.git] / baro_tests / collectd.py
1 #!/usr/bin/python
2
3 import sys
4
5
6 def main(logger):
7     logger.info("Running Baromtercollectd test suite...")
8     #
9     # TODO: implementation
10     #
11     logger.info("Test suite successfully completed.")
12     return 0
13
14 if __name__ == '__main__':
15     sys.exit(main())