summaryrefslogtreecommitdiff
path: root/tests/old/__init__.py
blob: e93c0b65e4eddcccaf7ba98122b152f60202834d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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()