~openerp-dev/openobject-client-web/trunk-bug-1156592-priyanka

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

import sys
from os.path import join, dirname, abspath
test_path = join(dirname(abspath(__file__)), "openobject", "tests")
sys.path.insert(0, test_path)


from openobject.base.test import test

if __name__ == "__main__":
    test.run()

# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: