summaryrefslogtreecommitdiffstats
path: root/tests/run_tests.py
blob: 1a1969da146262ef7c19e2aea3406a63d4f4b212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
from __future__ import unicode_literals

from line_tests import *
from document_tests import *
from inputstream_tests import *
from key_binding_tests import *
from screen_tests import *
from regular_languages_tests import *
from layout_tests import *

import unittest

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