summaryrefslogtreecommitdiff
path: root/tests/old/__init__.py
blob: afd0f0747f64f738d5868e1730dbca3335b6f68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import os
import unittest



if __name__ == '__main__':
    os.chdir(os.path.dirname(__file__))
    print os.getcwd()

    for path in os.listdir('.'):
        if path.endswith('.py'):
            exec 'from %s import *' % path[:-3]
    unittest.main()