Minor changes in unit module
[empire.git] / empire.py
blob88236d3cce9466d6abd70ed807c1e1d8facee9c7
1 #!/usr/bin/env python
3 """
5 TODO: add description
6 """
9 # ----------------------------------- TESTS ---------------------------------- #
11 import unittest
13 class ModuleTest(unittest.TestCase):
14 """Main test case for this module.
15 """
16 pass
19 def main():
20 unittest.main()
22 if __name__ == '__main__':
23 main()