Cleanup error messages.
[pyyaml/python3.git] / tests / test_yaml.py
blobf0c05274f95f4827b7de3eed2049f3cb714958af
2 import unittest
4 from test_marker 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_syck import *
12 def main(module='__main__'):
13 unittest.main(module)
15 if __name__ == '__main__':
16 main()