Add style information to events generated by Parser.
[pyyaml/python3.git] / tests / test_yaml.py
bloba2759c46e26b74e5effd495b284fe901d4590c23
2 import unittest
4 from test_mark import *
5 from test_reader import *
6 from test_canonical import *
7 from test_tokens import *
8 from test_structure import *
9 from test_errors import *
10 from test_detector import *
11 from test_constructor import *
12 #from test_emitter import *
13 from test_syck import *
15 def main(module='__main__'):
16 unittest.main(module)
18 if __name__ == '__main__':
19 main()