summaryrefslogtreecommitdiff
path: root/tests/run_all_tests.py
blob: e3eb1d96c8bd70ff4e0d43618d78607f17d69221 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
    run all unittests
    ~~~~~~~~~~~~~~~~~
    

    Last commit info:
    ~~~~~~~~~~~~~~~~~
    $LastChangedDate:$
    $Rev:$
    $Author$

    :copyleft: 2008-2009 by python-creole team, see AUTHORS for more details.
    :license: GNU GPL v3 or above, see LICENSE.txt for more details.
"""

import unittest

from tests.utils.utils import MarkupTest
from tests.test_cross_compare import CrossCompareTests
from tests.test_creole2html import TestCreole2html, TestCreole2htmlMarkup
from tests.test_html2creole import TestHtml2Creole, TestHtml2CreoleMarkup

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