~vomun-developers/anonplus/vomun-trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! /usr/bin/env python
'''Run unit tests on Project Vomun'''
import unittest
import sys

# Load the unit tests
from unittests.code.libs.config import *
from unittests.code.libs.errors import *
from unittests.code.libs.friends import *
from unittests.code.libs.globals import *
from unittests.code.libs.encryption.rsa import *

# Load additional tests
if '--config' in sys.argv:
    from unittests.setup.config import *

if __name__ == '__main__':
    unittest.main()