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

import unittest

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

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

if __name__ == '__main__':
    main()