summaryrefslogtreecommitdiff
path: root/tests/test_yaml.py
blob: 389ecd8ed0a5ced1cd6a098cad5398941859c7aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

import unittest

from test_marker import *
from test_stream import *
from test_canonical import *
from test_tokens import *
from test_structure import *

def main(module='__main__'):
    unittest.main(module)

if __name__ == '__main__':
    main()